diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-12-21 16:25:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-12-21 16:25:25 +0000 |
commit | f16d401988a32de982e2ba8054f14b1fb94f2000 (patch) | |
tree | 78e572cf7d3e009d7f7480e70b77acdb9f6d5342 | |
parent | e134f08ac100515acbc1dc54a4e9415fab082ae4 (diff) | |
download | glibc-f16d401988a32de982e2ba8054f14b1fb94f2000.tar.gz glibc-f16d401988a32de982e2ba8054f14b1fb94f2000.tar.xz glibc-f16d401988a32de982e2ba8054f14b1fb94f2000.zip |
Update.
1999-12-21 Andreas Schwab <schwab@suse.de> * include/unistd.h: Declare __libc_lseek. 1999-12-21 Andreas Jaeger <aj@suse.de> * stdlib/longlong.h: Remove __P.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | include/unistd.h | 1 | ||||
-rw-r--r-- | stdlib/longlong.h | 2 |
3 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 254a0fc60e..ab5b446b32 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +1999-12-21 Andreas Schwab <schwab@suse.de> + + * include/unistd.h: Declare __libc_lseek. + +1999-12-21 Andreas Jaeger <aj@suse.de> + + * stdlib/longlong.h: Remove __P. + 1999-12-21 Andreas Jaeger <aj@suse.de> * sysdeps/powerpc/fpu/libm-ulps: New file. diff --git a/include/unistd.h b/include/unistd.h index 24e035bb90..ecfcd58183 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -5,6 +5,7 @@ extern int __access (__const char *__name, int __type); extern int __euidaccess (__const char *__name, int __type); extern __off64_t __lseek64 (int __fd, __off64_t __offset, int __whence); +extern __off_t __libc_lseek (int __fd, __off_t __offset, int __whence); extern __off64_t __libc_lseek64 (int __fd, __off64_t __offset, int __whence); extern ssize_t __pread (int __fd, void *__buf, size_t __nbytes, __off_t __offset); diff --git a/stdlib/longlong.h b/stdlib/longlong.h index a2e56c4c67..6d349e2b3a 100644 --- a/stdlib/longlong.h +++ b/stdlib/longlong.h @@ -168,7 +168,7 @@ (q) = __udiv_qrnnd (&__r, (n1), (n0), (d)); \ (r) = __r; \ } while (0) -extern UDItype __udiv_qrnnd __P ((UDItype *, UDItype, UDItype, UDItype)); +extern UDItype __udiv_qrnnd (UDItype *, UDItype, UDItype, UDItype); #define UDIV_TIME 220 #endif /* LONGLONG_STANDALONE */ #endif /* __alpha */ |