diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-06-20 22:48:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-06-20 22:48:53 +0000 |
commit | e6ac0e78f1fd258b74ae9175ef17460968b7f0f5 (patch) | |
tree | cace486df81750d04b402724b6094874caeb2e3d /include/unistd.h | |
parent | f74ff957c54e3689194f5caecb6ed292ab648479 (diff) | |
download | glibc-e6ac0e78f1fd258b74ae9175ef17460968b7f0f5.tar.gz glibc-e6ac0e78f1fd258b74ae9175ef17460968b7f0f5.tar.xz glibc-e6ac0e78f1fd258b74ae9175ef17460968b7f0f5.zip |
Update.
2002-06-18 Jakub Jelinek <jakub@redhat.com> * include/unistd.h (__fork_internal): Remove. (__fork): Don't define to __fork_internal. * sysdeps/mach/hurd/fork.c (__fork): Remove INTDEF. * sysdeps/unix/sysv/aix/fork.c (__fork): Likewise. * sysdeps/unix/sysv/linux/ia64/fork.S (__fork_internal): Remove alias. * sysdeps/unix/sysv/linux/sparc/fork.S (__fork_internal): Likewise. * sysdeps/unix/sysv/linux/syscalls.list (__fork_internal): Likewise. 2002-06-20 Ulrich Drepper <drepper@redhat.com> * po/hr.po: New file. 2002-06-11 Wolfram Gloger <wg@malloc.de> * malloc/malloc.c: Fix error path when new_heap() returns NULL. Reported by Michael Meissner <meissner@redhat.com>. 2002-06-20 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/ia64/getcontext.S: Fix typo. Patch by Hans Boehm <hans_boehm@hp.com>.
Diffstat (limited to 'include/unistd.h')
-rw-r--r-- | include/unistd.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/unistd.h b/include/unistd.h index 41b078af89..00fa95b02a 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -95,7 +95,6 @@ extern ssize_t __write (int __fd, __const void *__buf, size_t __n); extern ssize_t __write_internal (int __fd, __const void *__buf, size_t __n) attribute_hidden; extern __pid_t __fork (void); -extern __pid_t __fork_internal (void) attribute_hidden; extern int __getpagesize (void) __attribute__ ((__const__)); extern int __getpagesize_internal (void) __attribute__ ((__const__)) attribute_hidden; @@ -123,7 +122,6 @@ extern void __libc_check_standard_fds (void); #ifndef NOT_IN_libc # define __close(fd) INTUSE(__close) (fd) # define __dup2(fd, fd2) INTUSE(__dup2) (fd, fd2) -# define __fork() INTUSE(__fork) () # define __getpagesize() INTUSE(__getpagesize) () # define __getpgid(pid) INTUSE(__getpgid) (pid) # define __getpid() INTUSE(__getpid) () |