diff options
| author | martin <martin@NetBSD.org> | 2000-12-30 21:36:23 +0000 |
|---|---|---|
| committer | martin <martin@NetBSD.org> | 2000-12-30 21:36:23 +0000 |
| commit | 8d2fdb358ecbf780b7dfcbc08ee73b7a4028a5e5 (patch) | |
| tree | 30589e561689e983f533e7becdd10de077ad606b | |
| parent | d962f9c52e6fc6154e0f6cb382cd953dd7e17d45 (diff) | |
Don't duplicate system declarations (vsprintf and friends) already
present in system headers. Even worse: those declarations have slightly
different argument types (va_list vs. _BSD_VA_LIST_)
| -rw-r--r-- | usr.sbin/sup/source/supextern.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/sup/source/supextern.h b/usr.sbin/sup/source/supextern.h index 108eec65cc5..87792ae3c26 100644 --- a/usr.sbin/sup/source/supextern.h +++ b/usr.sbin/sup/source/supextern.h @@ -1,4 +1,4 @@ -/* $NetBSD: supextern.h,v 1.13 2000/10/11 20:23:57 is Exp $ */ +/* $NetBSD: supextern.h,v 1.14 2000/12/30 21:36:23 martin Exp $ */ struct stat; @@ -193,7 +193,11 @@ int msgxpatch __P((void)); int msgcompress __P((void)); /* vprintf.c */ +/* XXX already in system headers included already - but with different + argument declarations! */ +#if 0 int vprintf __P((const char *, va_list)); int vfprintf __P((FILE *, const char *, va_list)); int vsprintf __P((char *, const char *, va_list)); int vsnprintf __P((char *, size_t, const char *, va_list)); +#endif |
