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

Diff for /src/usr.bin/printf/printf.c between version 1.5 and 1.6

version 1.5, 2001/11/19 19:02:15 version 1.6, 2002/02/16 21:27:51
Line 55 
Line 55 
 #include <errno.h>  #include <errno.h>
 #include <err.h>  #include <err.h>
   
 static int       print_escape_str __P((const char *));  static int       print_escape_str(const char *);
 static int       print_escape __P((const char *));  static int       print_escape(const char *);
   
 static int       getchr __P((void));  static int       getchr(void);
 static double    getdouble __P((void));  static double    getdouble(void);
 static int       getint __P((void));  static int       getint(void);
 static long      getlong __P((void));  static long      getlong(void);
 static unsigned long getulong __P ((void));  static unsigned long getulong(void);
 static char     *getstr __P((void));  static char     *getstr(void);
 static char     *mklong __P((const char *, int));  static char     *mklong(const char *, int);
 static void      check_conversion __P((const char *, const char *));  static void      check_conversion(const char *, const char *);
 static void      usage __P((void));  static void      usage(void);
   
 static int      rval;  static int      rval;
 static char  **gargv;  static char  **gargv;

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6