diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-07-22 17:18:50 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-07-22 17:18:50 +0000 |
commit | 0d02da7d3ba5afc8fa7d15a93e9c36acebd36055 (patch) | |
tree | 1168dc98a7158f9329001ae3fea41b6be51ea8ea /usr.bin/patch/pch.h | |
parent | abed2307ad3d6f09d84e8980716b09c12f6d8fc7 (diff) |
More cleanup.
ok millert@ tedu@
Diffstat (limited to 'usr.bin/patch/pch.h')
-rw-r--r-- | usr.bin/patch/pch.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/usr.bin/patch/pch.h b/usr.bin/patch/pch.h index 9f20d696123..9c8633f4f53 100644 --- a/usr.bin/patch/pch.h +++ b/usr.bin/patch/pch.h @@ -1,15 +1,11 @@ -/* $OpenBSD: pch.h,v 1.5 2003/07/21 14:32:21 deraadt Exp $ */ +/* $OpenBSD: pch.h,v 1.6 2003/07/22 17:18:49 otto Exp $ */ -EXT FILE *pfp INIT(Nullfp); /* patch file pointer */ +EXT FILE *pfp INIT(NULL); /* 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); @@ -23,5 +19,4 @@ LINENUM pch_context(void); LINENUM pch_hunk_beg(void); char pch_char(LINENUM); char *pfetch(LINENUM); -char *pgets(char *, int, FILE *); void do_ed_script(void); |