diff options
Diffstat (limited to 'src/err.c')
-rw-r--r-- | src/err.c | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -25,6 +25,8 @@ * Print a warning to stderr, followed by a description * of the value of `errno`. * + * This is a non-standard BSD extension. + * * @param format Formatting-string for the warning. * @param ... Formatting-arguments. */ @@ -41,6 +43,8 @@ void warn(const char* format, ...) * Print a warning to stderr, followed by a description * of the value of `errno`. * + * This is a non-standard BSD extension. + * * @param format Formatting-string for the warning. * @param args Formatting-arguments. */ @@ -54,6 +58,8 @@ void vwarn(const char* format, va_list args) * Print a warning to stderr, but do not print a * description of the value of `errno`. * + * This is a non-standard BSD extension. + * * @param format Formatting-string for the warning. * @param ... Formatting-arguments. */ @@ -70,6 +76,8 @@ void warnx(const char* format, ...) * Print a warning to stderr, but do not print a * description of the value of `errno`. * + * This is a non-standard BSD extension. + * * @param format Formatting-string for the warning. * @param args Formatting-arguments. */ @@ -83,6 +91,8 @@ void vwarnx(const char* format, va_list args) * Print an error message to stderr, followed by a * description of the value of `errno`. Then exit the process. * + * This is a non-standard BSD extension. + * * @parma status The exit status the process should have. * @param format Formatting-string for the warning. * @param ... Formatting-arguments. @@ -100,6 +110,8 @@ void err(int status, const char* format, ...) * Print an error message to stderr, followed by a * description of the value of `errno`. Then exit the process. * + * This is a non-standard BSD extension. + * * @parma status The exit status the process should have. * @param format Formatting-string for the warning. * @param args Formatting-arguments. @@ -114,6 +126,8 @@ void verr(int status, const char* format, va_list args) * Print an error message to stderr, but do not print a * description of the value of `errno`. Then exit the process. * + * This is a non-standard BSD extension. + * * @parma status The exit status the process should have. * @param format Formatting-string for the warning. * @param ... Formatting-arguments. @@ -131,6 +145,8 @@ void errx(int status, const char* format, ...) * Print an error message to stderr, but do not print a * description of the value of `errno`. Then exit the process. * + * This is a non-standard BSD extension. + * * @parma status The exit status the process should have. * @param format Formatting-string for the warning. * @param args Formatting-arguments. |