diff options
author | ache <ache@FreeBSD.org> | 1995-03-03 02:34:14 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-03-03 02:34:14 +0000 |
commit | 09b78a5269c42be9dc2ebe6cc2d487ecaec3fea7 (patch) | |
tree | 571819b17c42dd410a1c1c0914d653ae490b3b05 /lib | |
parent | b54a8f4ff36dfb42fd6fce2e4615615fff783aef (diff) | |
download | FreeBSD-src-09b78a5269c42be9dc2ebe6cc2d487ecaec3fea7.zip FreeBSD-src-09b78a5269c42be9dc2ebe6cc2d487ecaec3fea7.tar.gz |
Solve conflict between two global force variables
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libmytinfo/termcap.c | 2 | ||||
-rw-r--r-- | lib/libmytinfo/terminfo.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libmytinfo/termcap.c b/lib/libmytinfo/termcap.c index 39961e1..8e8a3f3 100644 --- a/lib/libmytinfo/termcap.c +++ b/lib/libmytinfo/termcap.c @@ -21,7 +21,7 @@ static const char SCCSid[] = "@(#) mytinfo termcap.c 3.3 92/06/01 public domain, extern char _mytinfo_version[]; /* not static */ -char *force = _mytinfo_version; +char *_force_pick1 = _mytinfo_version; int tgetent(buf, term) diff --git a/lib/libmytinfo/terminfo.c b/lib/libmytinfo/terminfo.c index a136d1e..342e08f 100644 --- a/lib/libmytinfo/terminfo.c +++ b/lib/libmytinfo/terminfo.c @@ -18,7 +18,7 @@ static const char SCCSid[] = "@(#) mytinfo terminfo.c 3.2 92/02/01 public domain extern char _mytinfo_version[]; /* not static */ -char *force = _mytinfo_version; +char *_force_pick2 = _mytinfo_version; #ifdef USE_FAKE_STDIO |