diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-13 01:08:15 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-13 01:08:15 +0000 |
commit | faea9de6e06ea59dd5f891f5a9860cb1cb805ab1 (patch) | |
tree | 9cd07cf6da7897816d0936ae854677275975ddc6 /sysdeps/mach | |
parent | df9629171c45a83e14ff8319b4d0837ceee22d3f (diff) | |
download | glibc-faea9de6e06ea59dd5f891f5a9860cb1cb805ab1.zip glibc-faea9de6e06ea59dd5f891f5a9860cb1cb805ab1.tar.gz glibc-faea9de6e06ea59dd5f891f5a9860cb1cb805ab1.tar.bz2 |
* include/sys/wait.h (__waitpid): Add libc_hidden_proto.
* sysdeps/unix/sysv/sco3.2.4/waitpid.S: Add libc_hidden_def.
* sysdeps/unix/sysv/sysv4/waitpid.c: Add libc_hidden_weak.
* sysdeps/unix/sysv/linux/waitpid.c: Likewise.
* sysdeps/unix/sysv/aix/waitpid.c: Likewise.
* sysdeps/unix/bsd/bsd4.4/waitpid.c: Likewise.
* sysdeps/generic/waitpid.c: Likewise.
* include/net/if.h: New file. Use libc_hidden_proto
for if_nametoindex and if_indextoname.
* sysdeps/generic/if_index.c: Add libc_hidden_def.
* sysdeps/mach/hurd/if_index.c: Likewise.
* sysdeps/unix/sysv/linux/if_index.c: Likewise.
* include/grp.h (setgroups): Add libc_hidden_proto.
* sysdeps/generic/setgroups.c: Add libc_hidden_def.
* sysdeps/mach/hurd/setgroups.c: Likewise.
* sysdeps/unix/sysv/irix4/setgroups.c: Likewise.
* sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/hurd/if_index.c | 2 | ||||
-rw-r--r-- | sysdeps/mach/hurd/setgroups.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/if_index.c b/sysdeps/mach/hurd/if_index.c index 63dad54..664a3a1 100644 --- a/sysdeps/mach/hurd/if_index.c +++ b/sysdeps/mach/hurd/if_index.c @@ -50,6 +50,7 @@ if_nametoindex (const char *ifname) __close (fd); return ifr.ifr_ifindex; } +libc_hidden_def (if_nametoindex) /* Free the structure IFN returned by if_nameindex. */ void @@ -176,6 +177,7 @@ if_indextoname (unsigned int ifindex, char *ifname) __close (fd); return strncpy (ifname, ifr.ifr_name, IFNAMSIZ); } +libc_hidden_def (if_indextoname) #if 0 void diff --git a/sysdeps/mach/hurd/setgroups.c b/sysdeps/mach/hurd/setgroups.c index fbe4817..d0bd634 100644 --- a/sysdeps/mach/hurd/setgroups.c +++ b/sysdeps/mach/hurd/setgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1994, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1993,94,97,2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -23,7 +23,6 @@ #include <hurd/id.h> /* Set the group set for the current user to GROUPS (N of them). */ -/* XXX should be __setgroups ? */ int setgroups (n, groups) size_t n; @@ -63,3 +62,4 @@ setgroups (n, groups) __mach_port_deallocate (__mach_task_self (), newauth); return err; } +libc_hidden_def (setgroups) |