* include/err.h: Fix loss of semicolons in previous patch.

This commit is contained in:
Corinna Vinschen 2011-02-02 15:14:46 +00:00
parent 0cda941fa1
commit b22bd786e3
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2011-02-02 Eric Blake <eblake@redhat.com>
* include/err.h: Fix loss of semicolons in previous patch.
2011-02-02 Corinna Vinschen <corinna@vinschen.de>
* include/err.h (err): Add noreturn attribute.

View File

@ -16,8 +16,8 @@ details. */
__BEGIN_DECLS
extern void warn (const char *fmt, ...)
extern void warnx (const char *fmt, ...)
extern void warn (const char *fmt, ...);
extern void warnx (const char *fmt, ...);
extern void err (int eval, const char *fmt, ...) __attribute__ ((__noreturn__));
extern void errx (int eval, const char *fmt, ...) __attribute__ ((__noreturn__));