update to latest version

This commit is contained in:
cgd 1993-11-06 00:43:59 +00:00
parent 95c898787c
commit 012f3316af

View File

@ -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_ */