* 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.
+2002-08-12 Roland McGrath <roland@redhat.com>
+
+ * 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.
+
2002-08-13 Jakub Jelinek <jakub@redhat.com>
* include/unistd.h (seteuid, setegid): Add libc_hidden_proto.
#ifndef _GRP_H
#include <grp/grp.h>
+libc_hidden_proto (setgroups)
+
/* Now define the internal interfaces. */
extern int __getgrent_r (struct group *__resultbuf, char *buffer,
size_t __buflen, struct group **__result)
--- /dev/null
+#ifndef _NET_IF_H
+
+# include_next <net/if.h>
+
+libc_hidden_proto (if_nametoindex)
+libc_hidden_proto (if_indextoname)
+
+#endif
/* Now define the internal interfaces. */
extern __pid_t __waitpid (__pid_t __pid, int *__stat_loc,
int __options);
+libc_hidden_proto (__waitpid)
+
extern __pid_t __libc_waitpid (pid_t __pid, int *__stat_loc, int __options);
extern __pid_t __libc_wait (int *__stat_loc);
extern __pid_t __wait (__WAIT_STATUS __stat_loc);
-/* Copyright (C) 1997,98,99,2000 Free Software Foundation, Inc.
+/* Copyright (C) 1997,98,99,2000,02 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
__set_errno (ENOSYS);
return 0;
}
+libc_hidden_def (if_nametoindex)
stub_warning (if_nametoindex)
char *
__set_errno (ENOSYS);
return NULL;
}
+libc_hidden_def (if_indextoname)
stub_warning (if_indextoname)
void
-/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991,95,96,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
__set_errno (ENOSYS);
return -1;
}
-
+libc_hidden_def (setgroups)
stub_warning (setgroups)
#include <stub-tag.h>
-/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991,95,96,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
return (pid_t) -1;
}
weak_alias (__libc_waitpid, __waitpid)
+libc_hidden_weak (__waitpid)
weak_alias (__libc_waitpid, waitpid)
stub_warning (waitpid)
__close (fd);
return ifr.ifr_ifindex;
}
+libc_hidden_def (if_nametoindex)
/* Free the structure IFN returned by if_nameindex. */
void
__close (fd);
return strncpy (ifname, ifr.ifr_name, IFNAMSIZ);
}
+libc_hidden_def (if_indextoname)
#if 0
void
-/* 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
#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;
__mach_port_deallocate (__mach_task_self (), newauth);
return err;
}
+libc_hidden_def (setgroups)
-/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991,95,96,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
}
weak_alias (__libc_waitpid, __waitpid)
+libc_hidden_weak (__waitpid)
weak_alias (__libc_waitpid, waitpid)
-/* Copyright (C) 1991, 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991,95,96,97,2000,02 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
return kwaitpid (stat_loc, pid, options, NULL, NULL);
}
weak_alias (__libc_waitpid, __waitpid)
+libc_hidden_weak (__waitpid)
weak_alias (__libc_waitpid, waitpid)
-/* Copyright (C) 1994, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1994,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
{
return __syssgi (SGI_SETGROUPS, n, groups);
}
+libc_hidden_def (setgroups)
-/* Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1997,98,2000,02 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
#endif
}
}
+libc_hidden_def (setgroups)
-/* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1997,98,99,2000,02 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
return ifr.ifr_ifindex;
#endif
}
+libc_hidden_def (if_nametoindex)
+
void
if_freenameindex (struct if_nameindex *ifn)
# endif
#endif
}
+libc_hidden_def (if_indextoname)
#if 0
void
-/* Copyright (C) 1991, 1992, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991,92,95,96,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
return __wait4 (pid, stat_loc, options, NULL);
}
weak_alias (__libc_waitpid, __waitpid)
+libc_hidden_weak (__waitpid)
weak_alias (__libc_waitpid, waitpid)
-/* Copyright (C) 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1993,94,95,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
movl r1, (scratch) /* Yes; store the status there. */
null: ret
+libc_hidden_def (__waitpid)
weak_alias (__waitpid, waitpid)
-/* Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1993,94,95,96,97,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Brendan Kehoe (brendan@zen.org).
any PID. */
return infop.__pid;
}
-
weak_alias (__libc_waitpid, __waitpid)
weak_alias (__libc_waitpid, waitpid)
+libc_hidden_weak (__waitpid)