=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/patch/pch.h,v retrieving revision 1.8 retrieving revision 1.9 diff -c -r1.8 -r1.9 *** src/usr.bin/patch/pch.h 2003/08/15 08:00:51 1.8 --- src/usr.bin/patch/pch.h 2003/10/31 20:20:45 1.9 *************** *** 1,4 **** ! /* $OpenBSD: pch.h,v 1.8 2003/08/15 08:00:51 otto Exp $ */ /* * patch - a program to apply diffs to original files --- 1,4 ---- ! /* $OpenBSD: pch.h,v 1.9 2003/10/31 20:20:45 millert Exp $ */ /* * patch - a program to apply diffs to original files *************** *** 25,30 **** --- 25,40 ---- * -C option added in 1998, original code by Marc Espie, based on FreeBSD * behaviour */ + + #define OLD_FILE 0 + #define NEW_FILE 1 + #define INDEX_FILE 2 + #define MAX_FILE 3 + + struct file_name { + char *path; + bool exists; + }; void re_patch(void); void open_patch_file(const char *);