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

Diff for /src/usr.bin/nice/nice.c between version 1.3 and 1.4

version 1.3, 2000/11/07 09:04:21 version 1.4, 2001/05/24 03:04:35
Line 61 
Line 61 
   
 #define DEFNICE 10  #define DEFNICE 10
   
   int     main __P((int, char **));
 static void usage __P((void));  static void usage __P((void));
   
 int  int
Line 114 
Line 115 
 static void  static void
 usage()  usage()
 {  {
         (void)fprintf(stderr,          extern char *__progname;
             "usage: nice [ -n increment ] utility [ argument ...]\n");          fprintf(stderr, "usage: %s [ -n increment ] utility [ argument ...]\n",
               __progname);
         exit(1);          exit(1);
 }  }

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