diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-02-01 20:55:42 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-02-01 20:55:42 +0000 |
commit | 6139d37fc7e23bb2ac2262eb6b2266ccb5cebd83 (patch) | |
tree | e8383d173219b148e6baa7a703cc2cb389bff526 /lib/libcurses/tinfo | |
parent | d65c604912a8f1af42e9e409bb936ad1a9e792b8 (diff) |
Bracket protos for _nc_read_bsd_terminfo_entry and _nc_read_bsd_terminfo_file
with #ifdef __OpenBSD__ to make it obvious they are OpenBSD extensions.
Update copyright years in tinfo/read_bsd_terminfo.c.
Diffstat (limited to 'lib/libcurses/tinfo')
-rw-r--r-- | lib/libcurses/tinfo/read_bsd_terminfo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcurses/tinfo/read_bsd_terminfo.c b/lib/libcurses/tinfo/read_bsd_terminfo.c index caf95ee8ce0..211e4c3e052 100644 --- a/lib/libcurses/tinfo/read_bsd_terminfo.c +++ b/lib/libcurses/tinfo/read_bsd_terminfo.c @@ -1,7 +1,7 @@ -/* $OpenBSD: read_bsd_terminfo.c,v 1.3 1999/01/23 18:31:02 millert Exp $ */ +/* $OpenBSD: read_bsd_terminfo.c,v 1.4 1999/02/01 20:55:41 millert Exp $ */ /* - * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> + * Copyright (c) 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com> * Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> * All rights reserved. * @@ -32,7 +32,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: read_bsd_terminfo.c,v 1.3 1999/01/23 18:31:02 millert Exp $"; +static char rcsid[] = "$OpenBSD: read_bsd_terminfo.c,v 1.4 1999/02/01 20:55:41 millert Exp $"; #endif #include <curses.priv.h> @@ -92,7 +92,7 @@ _nc_read_bsd_terminfo_entry(tn, filename, tp) return (1); } } - return(0); + return (0); } /* |