diff options
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 |