diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-08-11 18:44:11 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-08-11 18:44:11 +0000 |
commit | f81d98d612f857c18abcde8adec601dca663a73f (patch) | |
tree | a0f310cf47d4b782bcd8cb085d9c05267cbcc477 /sysdeps | |
parent | a2bde807bfaff3c016183a02a1f6a46764480410 (diff) | |
download | glibc-f81d98d612f857c18abcde8adec601dca663a73f.zip glibc-f81d98d612f857c18abcde8adec601dca663a73f.tar.gz glibc-f81d98d612f857c18abcde8adec601dca663a73f.tar.bz2 |
Update. Old logs are in ChangeLog.7.
1998-08-11 18:39 Ulrich Drepper <drepper@cygnus.com>
* string/strsignal.c (strsignal): Count real-time signals from zero.
See ChangeLog.8 for earlier changes.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/tempname.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/tempname.c b/sysdeps/generic/tempname.c index c17d869..fb366fc 100644 --- a/sysdeps/generic/tempname.c +++ b/sysdeps/generic/tempname.c @@ -40,11 +40,11 @@ stub_warning (__path_search) in DIR (if applicable), using template TMPL. If OPENIT is 1, open the file and return a fd. If LARGEFILE is 1, use open64() to do that. */ - int - __gen_tempname (tmpl, openit, largefile) +int +__gen_tempname (tmpl, openit, largefile) char *tmpl; int openit; - int large_file; + int largefile; { __set_errno (ENOSYS); return -1; |