summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-09-21 21:47:51 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-09-21 21:47:51 +0000
commitbab50abfed00d2dd9f9dce924ebbc7412946bdb8 (patch)
tree234e0a2f229c978d925564df21281daeca587d12 /lib
parent878ebad91eec3b4d8a2348928c28b46261823a93 (diff)
Make it compile without weak symbols
Diffstat (limited to 'lib')
-rw-r--r--lib/libtermlib/vidattr.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libtermlib/vidattr.c b/lib/libtermlib/vidattr.c
index 7b97bef3a2c..54a9ea4fbe3 100644
--- a/lib/libtermlib/vidattr.c
+++ b/lib/libtermlib/vidattr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vidattr.c,v 1.2 1996/09/21 19:22:28 tholo Exp $ */
+/* $OpenBSD: vidattr.c,v 1.3 1996/09/21 21:47:50 tholo Exp $ */
/*
* Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com>
@@ -31,7 +31,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: vidattr.c,v 1.2 1996/09/21 19:22:28 tholo Exp $";
+static char rcsid[] = "$OpenBSD: vidattr.c,v 1.3 1996/09/21 21:47:50 tholo Exp $";
#endif
#include <sys/cdefs.h>
@@ -40,6 +40,8 @@ static char rcsid[] = "$OpenBSD: vidattr.c,v 1.2 1996/09/21 19:22:28 tholo Exp $
__indr_reference(_vidattr, vidattr);
#else
+#undef vidattr
+
#define _vidattr vidattr
#define rcsid _rcsid
#include "_vidattr.c"