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

Diff for /src/usr.bin/mg/echo.c between version 1.19 and 1.20

version 1.19, 2002/02/14 23:00:56 version 1.20, 2002/02/16 21:27:49
Line 17 
Line 17 
   
 #include <stdarg.h>  #include <stdarg.h>
   
 static int      veread          __P((const char *, char *buf, int, int, va_list));  static int      veread(const char *, char *buf, int, int, va_list);
 static int      complt          __P((int, int, char *, int));  static int      complt(int, int, char *, int);
 static int      complt_list     __P((int, int, char *, int));  static int      complt_list(int, int, char *, int);
 static void     eformat         __P((const char *, va_list));  static void     eformat(const char *, va_list);
 static void     eputi           __P((int, int));  static void     eputi(int, int);
 static void     eputl           __P((long, int));  static void     eputl(long, int);
 static void     eputs           __P((char *));  static void     eputs(char *);
 static void     eputc           __P((char));  static void     eputc(char);
 static LIST     *copy_list      __P((LIST *));  static LIST     *copy_list(LIST *);
   
 int             epresf = FALSE;         /* stuff in echo line flag */  int             epresf = FALSE;         /* stuff in echo line flag */
   

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20