diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-28 17:59:29 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-28 17:59:29 +0000 |
commit | bae03d66fa6b6b9aba178742cc92f3aaf7cbfd79 (patch) | |
tree | 09b2fe75a62dd2c34fbd4a28d17d4f876d500a5b | |
parent | d0b3ee7c38d03ab23d7685e6e9cd5cd2fc9820ed (diff) |
#ifdef BROKEN_LINKER -> #if BROKEN_LINKER
-rw-r--r-- | lib/libcurses/tic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcurses/tic.h b/lib/libcurses/tic.h index b72b0c33f30..f3b6aa4684a 100644 --- a/lib/libcurses/tic.h +++ b/lib/libcurses/tic.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tic.h,v 1.6 1999/11/28 17:53:40 millert Exp $ */ +/* $OpenBSD: tic.h,v 1.7 1999/11/28 17:59:28 millert Exp $ */ /**************************************************************************** * Copyright (c) 1998 Free Software Foundation, Inc. * @@ -159,7 +159,7 @@ struct tinfo_fkeys { chtype code; }; -#ifdef BROKEN_LINKER +#if BROKEN_LINKER #define _nc_tinfo_fkeys _nc_tinfo_fkeysf() extern struct tinfo_fkeys *_nc_tinfo_fkeysf(void); |