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

Diff for /src/usr.bin/renice/renice.c between version 1.2 and 1.3

version 1.2, 1996/06/26 05:38:27 version 1.3, 1997/06/20 10:02:31
Line 48 
Line 48 
 #include <sys/time.h>  #include <sys/time.h>
 #include <sys/resource.h>  #include <sys/resource.h>
 #include <stdio.h>  #include <stdio.h>
   #include <stdlib.h>
 #include <pwd.h>  #include <pwd.h>
   
   int donice __P((int, int, int));
   
 /*  /*
  * Change the priority (nice) of processes   * Change the priority (nice) of processes
  * or groups of processes which are already   * or groups of processes which are already
  * running.   * running.
  */   */
   int
 main(argc, argv)  main(argc, argv)
         char **argv;          char **argv;
 {  {
Line 108 
Line 112 
         exit(errs != 0);          exit(errs != 0);
 }  }
   
   int
 donice(which, who, prio)  donice(which, who, prio)
         int which, who, prio;          int which, who, prio;
 {  {

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