diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-28 18:05:39 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-28 18:05:39 +0000 |
commit | 338652d46863ce74758ec28360336d61b592da5e (patch) | |
tree | 77ed67daea3f381d6382212f5d723cc8d7d14b8a /lib/libcurses | |
parent | bae03d66fa6b6b9aba178742cc92f3aaf7cbfd79 (diff) |
#ifdef BROKEN_LINKER -> #if BROKEN_LINKER
Diffstat (limited to 'lib/libcurses')
-rw-r--r-- | lib/libcurses/tinfo/init_keytry.c | 6 | ||||
-rw-r--r-- | lib/libcurses/tinfo/make_keys.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/libcurses/tinfo/init_keytry.c b/lib/libcurses/tinfo/init_keytry.c index 7ec2b909412..e19d49dbe43 100644 --- a/lib/libcurses/tinfo/init_keytry.c +++ b/lib/libcurses/tinfo/init_keytry.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init_keytry.c,v 1.2 1999/11/28 17:49:53 millert Exp $ */ +/* $OpenBSD: init_keytry.c,v 1.3 1999/11/28 18:05:38 millert Exp $ */ /**************************************************************************** * Copyright (c) 1999 Free Software Foundation, Inc. * @@ -43,7 +43,7 @@ MODULE_ID("$From: init_keytry.c,v 1.2 1999/09/11 17:32:57 Jeffrey.Honig Exp $") ** */ -#ifdef BROKEN_LINKER +#if BROKEN_LINKER #undef _nc_tinfo_fkeys #endif @@ -53,7 +53,7 @@ MODULE_ID("$From: init_keytry.c,v 1.2 1999/09/11 17:32:57 Jeffrey.Honig Exp $") /* LINT_PREPRO #endif*/ -#ifdef BROKEN_LINKER +#if BROKEN_LINKER struct tinfo_fkeys *_nc_tinfo_fkeysf(void) { return _nc_tinfo_fkeys; diff --git a/lib/libcurses/tinfo/make_keys.c b/lib/libcurses/tinfo/make_keys.c index d10b1a7e87f..d85eef5e41a 100644 --- a/lib/libcurses/tinfo/make_keys.c +++ b/lib/libcurses/tinfo/make_keys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: make_keys.c,v 1.4 1999/11/28 17:49:54 millert Exp $ */ +/* $OpenBSD: make_keys.c,v 1.5 1999/11/28 18:05:38 millert Exp $ */ /**************************************************************************** * Copyright (c) 1998 Free Software Foundation, Inc. * @@ -105,7 +105,7 @@ int main(int argc, char *argv[]) "", "/* This file was generated by MAKE_KEYS */", "", - "#ifdef BROKEN_LINKER", + "#if BROKEN_LINKER", "static", "#endif", "struct tinfo_fkeys _nc_tinfo_fkeys[] = {", |