[BACK]Return to util.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / patch

Diff for /src/usr.bin/patch/util.h between version 1.9 and 1.10

version 1.9, 2003/07/25 02:12:45 version 1.10, 2003/07/28 18:35:36
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
   
 char            *fetchname(char *, int, int);  char            *fetchname(const char *, int, int);
 int             backup_file(char *);  int             backup_file(const char *);
 int             move_file(char *, char *);  int             move_file(const char *, const char *);
 int             copy_file(char *, char *);  int             copy_file(const char *, const char *);
 void            say(char *, ...);  void            say(const char *, ...)
 void            fatal(char *, ...)  
                     __attribute__((__format__(__printf__, 1, 2)));                      __attribute__((__format__(__printf__, 1, 2)));
 void            pfatal(char *, ...)  void            fatal(const char *, ...)
                     __attribute__((__format__(__printf__, 1, 2)));                      __attribute__((__format__(__printf__, 1, 2)));
 void            ask(char *, ...)  void            pfatal(const char *, ...)
                     __attribute__((__format__(__printf__, 1, 2)));                      __attribute__((__format__(__printf__, 1, 2)));
 char            *savestr(char *);  void            ask(const char *, ...)
                       __attribute__((__format__(__printf__, 1, 2)));
   char            *savestr(const char *);
 void            set_signals(int);  void            set_signals(int);
 void            ignore_signals(void);  void            ignore_signals(void);
 void            makedirs(char *, bool);  void            makedirs(const char *, bool);
 void            version(void);  void            version(void);
 void            my_exit(int) __attribute__((noreturn));  void            my_exit(int) __attribute__((noreturn));

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10