summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorgrant <grant>2003-09-15 08:29:51 +0000
committergrant <grant>2003-09-15 08:29:51 +0000
commit443faedd04b7a49c8c41eb214710e250b3aed1bb (patch)
tree9aedcbedbf1605f702eee9f5713c707adae40a6e /pkgtools
parent3587639229249f033e44211279640188ebec885c (diff)
downloadpkgsrc-443faedd04b7a49c8c41eb214710e250b3aed1bb.tar.gz
add prototypes for v{err,warn}{,x}.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/libnbcompat/files/nbcompat/err.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgtools/libnbcompat/files/nbcompat/err.h b/pkgtools/libnbcompat/files/nbcompat/err.h
index b932c15c924..d3d73140ae4 100644
--- a/pkgtools/libnbcompat/files/nbcompat/err.h
+++ b/pkgtools/libnbcompat/files/nbcompat/err.h
@@ -1,4 +1,4 @@
-/* $NetBSD: err.h,v 1.1 2003/09/03 13:35:50 jlam Exp $ */
+/* $NetBSD: err.h,v 1.2 2003/09/15 08:29:51 grant Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -41,8 +41,12 @@
#ifndef HAVE_ERR
void err(int, const char *, ...);
void errx(int, const char *, ...);
+void verr(int, const char *, va_list);
+void verrx(int, const char *, va_list);
void warn(const char *, ...);
void warnx(const char *, ...);
+void vwarn(const char *, va_list);
+void vwarnx(const char *, va_list);
#endif
#endif /* !_ERR_H_ */