xref: /freebsd/usr.bin/top/commands.h (revision c5fda9bac0325eb8c5b447717862d279006f318f)
1 /*
2  *  Top users/processes display for Unix
3  *  Version 3
4  *
5  *  This program may be freely redistributed,
6  *  but this entire comment MUST remain intact.
7  *
8  *  Copyright (c) 1984, 1989, William LeFebvre, Rice University
9  *  Copyright (c) 1989, 1990, 1992, William LeFebvre, Northwestern University
10  *  Copyright (c) 2016, Randy Westlund
11  *
12  * $FreeBSD$
13  */
14 #ifndef COMMANDS_H
15 #define COMMANDS_H
16 
17 void	show_errors(void);
18 int	error_count(void);
19 void	show_help(void);
20 
21 #endif /* COMMANDS_H */
22