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

Diff for /src/usr.bin/hexdump/odsyntax.c between version 1.12 and 1.13

version 1.12, 2003/06/03 02:56:09 version 1.13, 2003/06/12 20:58:09
Line 80 
Line 80 
 };  };
   
 void  void
 oldsyntax(argc, argvp)  oldsyntax(int argc, char ***argvp)
         int argc;  
         char ***argvp;  
 {  {
         int ch;          int ch;
         char *p, **argv;          char *p, **argv;
Line 206 
Line 204 
  * Interpret a POSIX-style -t argument.   * Interpret a POSIX-style -t argument.
  */   */
 static void  static void
 posixtypes(type_string)  posixtypes(char *type_string)
         char *type_string;  
 {  {
         int x, y, nbytes;          int x, y, nbytes;
   
Line 302 
Line 299 
 }  }
   
 void  void
 oldusage()  oldusage(void)
 {  {
         extern char *__progname;          extern char *__progname;
         fprintf(stderr, "usage: %s [-aBbcDdeFfHhIiLlOovXx] [-j skip] "          fprintf(stderr, "usage: %s [-aBbcDdeFfHhIiLlOovXx] [-j skip] "
Line 312 
Line 309 
 }  }
   
 static void  static void
 odoffset(argc, argvp)  odoffset(int argc, char ***argvp)
         int argc;  
         char ***argvp;  
 {  {
         char *num, *p;          char *num, *p;
         int base;          int base;
Line 412 
Line 407 
 }  }
   
 static void  static void
 odprecede()  odprecede(void)
 {  {
         static int first = 1;          static int first = 1;
   

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13