diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-11-28 07:40:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-11-28 07:40:13 +0000 |
commit | 49f3a758597f7904ba7e779156df8f9b61c06303 (patch) | |
tree | e1f09e4f949ff0a76acba7fbbeb3192e5311d2c8 /misc/error.c | |
parent | 8c0b7170956ed028472b4c1ef1d94608101da565 (diff) | |
download | glibc-49f3a758597f7904ba7e779156df8f9b61c06303.tar glibc-49f3a758597f7904ba7e779156df8f9b61c06303.tar.gz glibc-49f3a758597f7904ba7e779156df8f9b61c06303.tar.bz2 glibc-49f3a758597f7904ba7e779156df8f9b61c06303.zip |
Update.
* misc/getusershell.c: Make strings in okshells array const.
* misc/regexp.c: Add const to cast to avoid warnings.
* sysdeps/unix/sysv/linux/llseek.c: Add prototype for __llseek.
* sysdeps/unix/sysv/linux/i386/setresuid.c: Add prototype for
__setresuid.
* sysdeps/unix/sysv/linux/i386/setresgid.c: Add prototype for
setresgid.
* misc/error.c: Add prototypes for __error and __error_at_line.
* misc/mntent_r.c (__getmntent_r): Add break at end of switch
statement to avoid warning.
Diffstat (limited to 'misc/error.c')
-rw-r--r-- | misc/error.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/misc/error.c b/misc/error.c index 690b5bdc99..599de78629 100644 --- a/misc/error.c +++ b/misc/error.c @@ -74,6 +74,10 @@ unsigned int error_message_count; /* In GNU libc we want do not want to use the common name `error' directly. Instead make it a weak alias. */ +extern void __error (int status, int errnum, const char *message, ...); +extern void __error_at_line (int status, int errnum, const char *file_name, + unsigned int line_number, const char *message, + ...); # define error __error # define error_at_line __error_at_line |