OSDN Git Service

Patch from Rob McMullen:
authorEric Andersen <andersen@codepoet.org>
Thu, 9 Oct 2003 09:02:05 +0000 (09:02 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 9 Oct 2003 09:02:05 +0000 (09:02 -0000)
Here's a patch...  Since they aren't SUSv3 functions, I don't know if
they'll ever get officially added, but it helps with BSD porting and
allows quite a few Gentoo ebuilds to compile without changing anything.

Rob

libc/misc/error/error.c

index ed1d910..60a9d8a 100644 (file)
@@ -100,3 +100,77 @@ void __error_at_line (int status, int errnum, const char *file_name,
 weak_alias (__error, error)
 weak_alias (__error_at_line, error_at_line)
 
+
+    
+#include "err.h"
+#include "errno.h"
+
+/* NORETURN */
+void verr (int status, const char *message, va_list args)
+{
+    fflush (stdout);
+
+    vfprintf (stderr, message, args);
+    if (errno) {
+        fprintf (stderr, ": %s", strerror (errno));
+    }
+    putc ('\n', stderr);
+    if (status)
+        exit (status);
+}
+
+/* NORETURN */
+void verrx (int status, const char *message, va_list args)
+{
+    fflush (stdout);
+
+    vfprintf (stderr, message, args);
+    if (status)
+        exit (status);
+}
+
+void vwarn (const char *message, va_list args)
+{
+    verr (0, message, args);
+}
+
+void vwarnx (const char *message, va_list args)
+{
+    verrx (0, message, args);
+}
+
+void err (int status, const char *message, ...)
+{
+    va_list args;
+
+    va_start (args, message);
+    verr (status, message, args);
+    va_end (args);
+}
+
+void errx (int status, const char *message, ...)
+{
+    va_list args;
+
+    va_start (args, message);
+    verrx (status, message, args);
+    va_end (args);
+}
+
+void warn (const char *message, ...)
+{
+    va_list args;
+
+    va_start (args, message);
+    verr (0, message, args);
+    va_end (args);
+}
+
+void warnx (const char *message, ...)
+{
+    va_list args;
+
+    va_start (args, message);
+    verrx (0, message, args);
+    va_end (args);
+}