=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/patch/util.h,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/patch/util.h 2003/07/25 02:12:45 1.9 --- src/usr.bin/patch/util.h 2003/07/28 18:35:36 1.10 *************** *** 1,19 **** ! /* $OpenBSD: util.h,v 1.9 2003/07/25 02:12:45 millert Exp $ */ ! char *fetchname(char *, int, int); ! int backup_file(char *); ! int move_file(char *, char *); ! int copy_file(char *, char *); ! void say(char *, ...); ! void fatal(char *, ...) __attribute__((__format__(__printf__, 1, 2))); ! void pfatal(char *, ...) __attribute__((__format__(__printf__, 1, 2))); ! void ask(char *, ...) __attribute__((__format__(__printf__, 1, 2))); ! char *savestr(char *); void set_signals(int); void ignore_signals(void); ! void makedirs(char *, bool); void version(void); void my_exit(int) __attribute__((noreturn)); --- 1,20 ---- ! /* $OpenBSD: util.h,v 1.10 2003/07/28 18:35:36 otto Exp $ */ ! char *fetchname(const char *, int, int); ! int backup_file(const char *); ! int move_file(const char *, const char *); ! int copy_file(const char *, const char *); ! void say(const char *, ...) __attribute__((__format__(__printf__, 1, 2))); ! void fatal(const char *, ...) __attribute__((__format__(__printf__, 1, 2))); ! void pfatal(const char *, ...) __attribute__((__format__(__printf__, 1, 2))); ! void ask(const char *, ...) ! __attribute__((__format__(__printf__, 1, 2))); ! char *savestr(const char *); void set_signals(int); void ignore_signals(void); ! void makedirs(const char *, bool); void version(void); void my_exit(int) __attribute__((noreturn));