diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 01:02:50 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 01:02:50 +0000 |
commit | a1915d4502e23cc0c30e1c80a31971e71e7340a5 (patch) | |
tree | 8502cb726a6ab5f8f041ab9ea6ea7dcca7b4c36b /libc/misc/error/error.c | |
parent | b865ce517bd48ce9f11dac018d350ed69a533e2b (diff) |
Convert users
Diffstat (limited to 'libc/misc/error/error.c')
-rw-r--r-- | libc/misc/error/error.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libc/misc/error/error.c b/libc/misc/error/error.c index 119396570..b51177e35 100644 --- a/libc/misc/error/error.c +++ b/libc/misc/error/error.c @@ -32,6 +32,7 @@ #include <string.h> #include "error.h" +extern int __putc(int c, FILE *stream) attribute_hidden; /* This variable is incremented each time `error' is called. */ unsigned int error_message_count; @@ -57,9 +58,9 @@ void __error (int status, int errnum, const char *message, ...) if (errnum) { fprintf (stderr, ": %s", strerror (errnum)); } - putc ('\n', stderr); + __putc ('\n', stderr); if (status) - exit (status); + __exit (status); } void __error_at_line (int status, int errnum, const char *file_name, @@ -93,9 +94,9 @@ void __error_at_line (int status, int errnum, const char *file_name, if (errnum) { fprintf (stderr, ": %s", strerror (errnum)); } - putc ('\n', stderr); + __putc ('\n', stderr); if (status) - exit (status); + __exit (status); } /* Use the weaks here in an effort at controlling namespace pollution */ |