diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-28 17:53:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-28 17:53:41 +0000 |
commit | bf9222557000665061ff4f09e335f7967c7f7563 (patch) | |
tree | 67ec9ebed78af2bd03692a68d339136ca96d01ff /lib/libcurses/tic.h | |
parent | c9e68edb8a158c8b6c7d2cf14190384708a3eaa3 (diff) |
update to ncurses-5.0-19991127
Diffstat (limited to 'lib/libcurses/tic.h')
-rw-r--r-- | lib/libcurses/tic.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/libcurses/tic.h b/lib/libcurses/tic.h index a1f5158e07a..b72b0c33f30 100644 --- a/lib/libcurses/tic.h +++ b/lib/libcurses/tic.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tic.h,v 1.5 1999/03/12 04:36:02 millert Exp $ */ +/* $OpenBSD: tic.h,v 1.6 1999/11/28 17:53:40 millert Exp $ */ /**************************************************************************** * Copyright (c) 1998 Free Software Foundation, Inc. * @@ -159,8 +159,17 @@ struct tinfo_fkeys { chtype code; }; +#ifdef BROKEN_LINKER + +#define _nc_tinfo_fkeys _nc_tinfo_fkeysf() +extern struct tinfo_fkeys *_nc_tinfo_fkeysf(void); + +#else + extern struct tinfo_fkeys _nc_tinfo_fkeys[]; +#endif + /* * The file comp_captab.c contains an array of these structures, one * per possible capability. These are indexed by a hash table array of |