[BACK]Return to top.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / top

Diff for /src/usr.bin/top/top.h between version 1.9 and 1.10

version 1.9, 2007/03/30 19:21:19 version 1.10, 2007/05/29 00:56:56
Line 61 
Line 61 
   
 #define NUM_AVERAGES    3  #define NUM_AVERAGES    3
   
 /* externs */  
 extern const char copyright[];  
   
 extern int overstrike;  struct errs {           /* structure for a system-call error */
           int err;        /* value of errno (that is, the actual error) */
           char *arg;      /* argument that caused the error */
   };
   
   extern struct errs errs[];
   extern int errcnt;
   
 /* commands.c */  /* commands.c */
 extern void show_help(void);  
 extern int error_count(void);  extern int error_count(void);
 extern void show_errors(void);  extern void show_errors(void);
 extern char *kill_procs(char *);  extern char *kill_procs(char *);

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10