diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-06-08 04:52:56 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-06-08 04:52:56 +0000 |
commit | 14fcdc4e9f32039c3345997aa2db18b6e4bbc994 (patch) | |
tree | ae18c57617fb24427ca4336858530ea0bb1f4319 /lib/libc/gen/warnx.c | |
parent | e88d54b4ae55f3de545f2425ca748e132ca52617 (diff) |
use weak aliases whenever is possible; millert@ ok.
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, ...) { |