diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-11-06 21:31:24 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-11-06 21:31:24 +0000 |
commit | 3e68e19f056aa97f40dce239f0475bebc88441d7 (patch) | |
tree | 8869e9aa5574653dc80b7c00e999199b55286ff7 /winsup/cygwin/include | |
parent | 6ef3b76be2d7620e8f495cf5654f0359a1ca178d (diff) | |
download | cygnal-3e68e19f056aa97f40dce239f0475bebc88441d7.tar.gz cygnal-3e68e19f056aa97f40dce239f0475bebc88441d7.tar.bz2 cygnal-3e68e19f056aa97f40dce239f0475bebc88441d7.zip |
* bsdlib.cc (_vwarnx): New function.
(vwarn): Ditto.
(vwarnx): Ditto.
(warn): Ditto.
(warnx): Ditto.
(verr): Ditto.
(verrx): Ditto.
(err): Ditto.
(errx): Ditto.
* cygwin.din: Export above functions.
* include/err.h: New file.
* include/cygwin/version.h: Bump API minor number.
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r-- | winsup/cygwin/include/cygwin/version.h | 3 | ||||
-rw-r--r-- | winsup/cygwin/include/err.h | 33 |
2 files changed, 35 insertions, 1 deletions
diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index d26ec4bc8..d692a397e 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -225,13 +225,14 @@ details. */ 98: Export _tmpfile64. 99: CW_GET_POSIX_SECURITY_ATTRIBUTE addition to external.cc. 100: CW_GET_SHMLBA addition to external.cc. + 101: Export err, errx, verr, verrx, warn, warnx, vwarn, vwarnx. */ /* Note that we forgot to bump the api for ualarm, strtoll, strtoull */ #define CYGWIN_VERSION_API_MAJOR 0 -#define CYGWIN_VERSION_API_MINOR 100 +#define CYGWIN_VERSION_API_MINOR 101 /* There is also a compatibity version number associated with the shared memory regions. It is incremented when incompatible diff --git a/winsup/cygwin/include/err.h b/winsup/cygwin/include/err.h new file mode 100644 index 000000000..d1002c527 --- /dev/null +++ b/winsup/cygwin/include/err.h @@ -0,0 +1,33 @@ +/* err.h + + Copyright 2003 Red Hat, Inc. + +This file is part of Cygwin. + +This software is a copyrighted work licensed under the terms of the +Cygwin license. Please consult the file "CYGWIN_LICENSE" for +details. */ + +#ifndef _ERR_H +#define _ERR_H + +#include <sys/cdefs.h> +#include <stdarg.h> + +__BEGIN_DECLS + +extern void warn (const char *fmt, ...); +extern void warnx (const char *fmt, ...); + +extern void err (int eval, const char *fmt, ...); +extern void errx (int eval, const char *fmt, ...); + +extern void vwarn (const char *fmt, va_list ap); +extern void vwarnx (const char *fmt, va_list ap); + +extern void verr (int eval, const char *fmt, va_list ap); +extern void verrx (int eval, const char *fmt, va_list ap); + +__END_DECLS + +#endif /* _ERR_H */ |