diff options
Diffstat (limited to 'lib/libedit/parse.h')
-rw-r--r-- | lib/libedit/parse.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/libedit/parse.h b/lib/libedit/parse.h index 0601746..356750d7 100644 --- a/lib/libedit/parse.h +++ b/lib/libedit/parse.h @@ -34,17 +34,19 @@ * SUCH DAMAGE. * * @(#)parse.h 8.1 (Berkeley) 6/4/93 + * $NetBSD: parse.h,v 1.3 1999/07/02 15:21:26 simonb Exp $ + * $FreeBSD$ */ /* * el.parse.h: Parser functions */ #ifndef _h_el_parse -#define _h_el_parse +#define _h_el_parse -protected int parse_line __P((EditLine *, const char *)); -protected int parse__escape __P((const char ** const)); -protected char * parse__string __P((char *, const char *)); -protected int parse_cmd __P((EditLine *, const char *)); +protected int parse_line(EditLine *, const char *); +protected int parse__escape(const char ** const); +protected char *parse__string(char *, const char *); +protected int parse_cmd(EditLine *, const char *); #endif /* _h_el_parse */ |