diff options
Diffstat (limited to 'usr.bin/patch/inp.h')
-rw-r--r-- | usr.bin/patch/inp.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/patch/inp.h b/usr.bin/patch/inp.h index 1d0ed96ba88..0b4e09d3647 100644 --- a/usr.bin/patch/inp.h +++ b/usr.bin/patch/inp.h @@ -1,12 +1,12 @@ -/* $OpenBSD: inp.h,v 1.2 1996/06/10 11:21:29 niklas Exp $ */ +/* $OpenBSD: inp.h,v 1.3 2003/07/18 02:00:09 deraadt Exp $ */ EXT LINENUM input_lines INIT(0); /* how long is input file in lines */ EXT LINENUM last_frozen_line INIT(0); /* how many input lines have been */ /* irretractibly output */ -bool rev_in_string(); -void scan_input(); -bool plan_a(); /* returns false if insufficient memory */ -void plan_b(); -char *ifetch(); +bool rev_in_string(char *); +void scan_input(char *); +bool plan_a(char *); /* returns false if insufficient memory */ +void plan_b(char *); +char *ifetch(LINENUM, int); |