diff options
Diffstat (limited to 'lib/libc/gen/warnx.c')
-rw-r--r-- | lib/libc/gen/warnx.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/libc/gen/warnx.c b/lib/libc/gen/warnx.c index f7255262716..0d36214c3aa 100644 --- a/lib/libc/gen/warnx.c +++ b/lib/libc/gen/warnx.c @@ -32,12 +32,19 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: warnx.c,v 1.3 2002/02/19 19:39:36 millert Exp $"; +static char rcsid[] = "$OpenBSD: warnx.c,v 1.4 2002/06/08 04:52:55 fgsch Exp $"; #endif /* LIBC_SCCS and not lint */ +#include <sys/cdefs.h> #include <err.h> #include <stdarg.h> +#ifdef __indr_reference +__indr_reference(_warnx, warnx); +#else +__weak_alias(warnx, _warnx); +#endif + void _warnx(const char *fmt, ...) { |