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

Diff for /src/usr.bin/top/machine.h between version 1.1 and 1.2

version 1.1, 1997/08/14 14:00:23 version 1.2, 1997/08/22 07:16:28
Line 51 
Line 51 
     char *command;      /* only this command (unless == NULL) */      char *command;      /* only this command (unless == NULL) */
 };  };
   
 /* routines defined by the machine dependent module */  /* prototypes */
   extern int display_init __P((struct statics *));
   
 char *format_header();  /* machine.c */
 char *format_next_process();  extern int machine_init __P((struct statics *));
   extern char *format_header __P((char *));
 /* non-int routines typically used by the machine dependent module */  extern void get_system_info __P((struct system_info *));
 char *printable();  extern caddr_t get_process_info __P((struct system_info *,
                                        struct process_select *,
                                        int (*)(const void *, const void *)));
   extern char *format_next_process __P((caddr_t, char *(*)()));
   extern int proc_compate __P((const void *, const void *));
   extern int proc_owner __P((pid_t));

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2