=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/patch/pch.h,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/usr.bin/patch/pch.h 2003/07/21 14:32:21 1.5 --- src/usr.bin/patch/pch.h 2003/07/22 17:18:49 1.6 *************** *** 1,15 **** ! /* $OpenBSD: pch.h,v 1.5 2003/07/21 14:32:21 deraadt Exp $ */ ! EXT FILE *pfp INIT(Nullfp); /* patch file pointer */ void re_patch(void); void open_patch_file(char *); void set_hunkmax(void); - void grow_hunkmax(void); bool there_is_another_patch(void); - int intuit_diff_type(void); - void next_intuit_at(long, long); - void skip_to(long, long); bool another_hunk(void); bool pch_swap(void); char *pfetch(LINENUM); --- 1,11 ---- ! /* $OpenBSD: pch.h,v 1.6 2003/07/22 17:18:49 otto Exp $ */ ! EXT FILE *pfp INIT(NULL); /* patch file pointer */ void re_patch(void); void open_patch_file(char *); void set_hunkmax(void); bool there_is_another_patch(void); bool another_hunk(void); bool pch_swap(void); char *pfetch(LINENUM); *************** *** 23,27 **** LINENUM pch_hunk_beg(void); char pch_char(LINENUM); char *pfetch(LINENUM); - char *pgets(char *, int, FILE *); void do_ed_script(void); --- 19,22 ----