summaryrefslogtreecommitdiff
path: root/lib/libcurses/term_entry.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-02-01 20:55:42 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-02-01 20:55:42 +0000
commit6139d37fc7e23bb2ac2262eb6b2266ccb5cebd83 (patch)
treee8383d173219b148e6baa7a703cc2cb389bff526 /lib/libcurses/term_entry.h
parentd65c604912a8f1af42e9e409bb936ad1a9e792b8 (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/term_entry.h')
-rw-r--r--lib/libcurses/term_entry.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcurses/term_entry.h b/lib/libcurses/term_entry.h
index a7dc1c1b83d..85236c000e1 100644
--- a/lib/libcurses/term_entry.h
+++ b/lib/libcurses/term_entry.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: term_entry.h,v 1.4 1999/01/23 18:31:02 millert Exp $ */
+/* $OpenBSD: term_entry.h,v 1.5 1999/02/01 20:55:40 millert Exp $ */
/****************************************************************************
* Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -90,9 +90,11 @@ extern bool _nc_entry_match(char *, char *);
extern int _nc_resolve_uses(void);
extern void _nc_free_entries(ENTRY *);
+#ifdef __OpenBSD__
/* read_bsd_terminfo.c: terminfo.db reading */
extern int _nc_read_bsd_terminfo_entry(const char * const, char * const, TERMTYPE *const);
extern int _nc_read_bsd_terminfo_file(const char * const, TERMTYPE *const);
+#endif /* __OpenBSD__ */
#ifdef __cplusplus
}