diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-07-05 22:30:16 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-07-05 22:30:16 +0000 |
commit | acd7e2f83ecd7b6f6164a23bde89caf8bdefaa1c (patch) | |
tree | c47e7bb6556f490dcef52ba6d61d966aad93bcc6 | |
parent | b90002b2953c1c99b422785d73eda317aa59a5de (diff) |
Fix prototypes
-rw-r--r-- | bin/ed/ed.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/ed/ed.h b/bin/ed/ed.h index 0a1d676d872..45a78003364 100644 --- a/bin/ed/ed.h +++ b/bin/ed/ed.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ed.h,v 1.6 2001/01/16 03:04:45 deraadt Exp $ */ +/* $OpenBSD: ed.h,v 1.7 2001/07/05 22:30:15 espie Exp $ */ /* $NetBSD: ed.h,v 1.23 1995/03/21 09:04:40 cgd Exp $ */ /* ed.h: type and constant definitions for the ed editor. */ @@ -247,7 +247,7 @@ int is_legal_filename __P((char *)); int join_lines __P((long, long)); int mark_line_node __P((line_t *, int)); int move_lines __P((long)); -line_t *next_active_node __P(()); +line_t *next_active_node __P((void)); long next_addr __P((void)); int open_sbuf __P((void)); char *parse_char_class __P((char *)); @@ -263,6 +263,7 @@ long read_stream __P((FILE *, long)); int search_and_replace __P((pattern_t *, int, int)); int set_active_node __P((line_t *)); void set_des_key __P((char *)); +void seterrmsg __P((char *)); void signal_hup __P((int)); void signal_int __P((int)); char *strip_escapes __P((char *)); |