aboutsummaryrefslogtreecommitdiffstats
path: root/src/err.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/err.c')
-rw-r--r--src/err.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/err.c b/src/err.c
index c0e2e3f..f92dd60 100644
--- a/src/err.c
+++ b/src/err.c
@@ -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.