diff options
| author | cgd <cgd@NetBSD.org> | 1993-11-06 00:43:59 +0000 |
|---|---|---|
| committer | cgd <cgd@NetBSD.org> | 1993-11-06 00:43:59 +0000 |
| commit | 012f3316af73b1ee5e752f697003abec6fdbb87f (patch) | |
| tree | 7768c7f9850d336d9050789d54372544d2212eae /include | |
| parent | 95c898787c62d6fbc68357ff570f0b698e16f79e (diff) | |
update to latest version
Diffstat (limited to 'include')
| -rw-r--r-- | include/err.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/include/err.h b/include/err.h index 0201496b1b2..2a27637b43a 100644 --- a/include/err.h +++ b/include/err.h @@ -1,6 +1,6 @@ /*- - * Copyright (c) 1993 The Regents of the University of California. - * All rights reserved. + * Copyright (c) 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -30,8 +30,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * from: @(#)err.h 5.1 (Berkeley) 3/4/93 - * $Id: err.h,v 1.4 1993/08/04 17:33:37 jtc Exp $ + * from: @(#)err.h 8.1 (Berkeley) 6/2/93 + * $Id: err.h,v 1.5 1993/11/06 00:43:59 cgd Exp $ */ #ifndef _ERR_H_ @@ -44,20 +44,18 @@ * for utilities to have to include one of them to include err.h, so we get * _BSD_VA_LIST_ from <machine/ansi.h> and use it. */ -/* s/_BSD_VA_LIST_/_VA_LIST_ to avoid major changes at this time */ - #include <machine/ansi.h> #include <sys/cdefs.h> __BEGIN_DECLS __dead void err __P((int, const char *, ...)); -__dead void verr __P((int, const char *, _VA_LIST_)); +__dead void verr __P((int, const char *, _BSD_VA_LIST_)); __dead void errx __P((int, const char *, ...)); -__dead void verrx __P((int, const char *, _VA_LIST_)); +__dead void verrx __P((int, const char *, _BSD_VA_LIST_)); void warn __P((const char *, ...)); -void vwarn __P((const char *, _VA_LIST_)); +void vwarn __P((const char *, _BSD_VA_LIST_)); void warnx __P((const char *, ...)); -void vwarnx __P((const char *, _VA_LIST_)); +void vwarnx __P((const char *, _BSD_VA_LIST_)); __END_DECLS #endif /* !_ERR_H_ */ |
