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

Diff for /src/usr.bin/hexdump/display.c between version 1.23 and 1.24

version 1.23, 2016/02/09 01:29:12 version 1.24, 2016/03/15 04:19:13
Line 49 
Line 49 
 static off_t address;                   /* address/offset in stream */  static off_t address;                   /* address/offset in stream */
 static off_t eaddress;                  /* end address */  static off_t eaddress;                  /* end address */
   
 static __inline void print(PR *, u_char *);  static void              bpad(PR *);
   static void              doskip(const char *, int);
   static u_char           *get(void);
   static __inline void     print(PR *, u_char *);
   
 void  void
 display(void)  display(void)
Line 196 
Line 199 
         }          }
 }  }
   
 void  static void
 bpad(PR *pr)  bpad(PR *pr)
 {  {
         static const char *spec = " -0+#";          static const char *spec = " -0+#";
Line 216 
Line 219 
   
 static char **_argv;  static char **_argv;
   
 u_char *  static u_char *
 get(void)  get(void)
 {  {
         static int ateof = 1;          static int ateof = 1;
Line 320 
Line 323 
         /* NOTREACHED */          /* NOTREACHED */
 }  }
   
 void  static void
 doskip(const char *fname, int statok)  doskip(const char *fname, int statok)
 {  {
         off_t cnt;          off_t cnt;

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24