diff options
author | grant <grant@pkgsrc.org> | 2003-09-15 08:29:51 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-09-15 08:29:51 +0000 |
commit | f0d05394e27874265d5a9e0f912c97222c576b17 (patch) | |
tree | 9aedcbedbf1605f702eee9f5713c707adae40a6e | |
parent | 0b6a2ceda93ddc197b11993e360b441f1b7402ad (diff) | |
download | pkgsrc-f0d05394e27874265d5a9e0f912c97222c576b17.tar.gz |
add prototypes for v{err,warn}{,x}.
-rw-r--r-- | pkgtools/libnbcompat/files/nbcompat/err.h | 6 |
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_ */ |