* sysdeps/generic/dl-environ.c: Add prototype for unsetenv.

	* sysdeps/unix/sysv/linux/i386/setrlimit.c: Add prototype for
	__new_setrlimit.

	* sysdeps/unix/sysv/linux/i386/oldgetrlimit64.c: Add prototype for
	__old_getrlimit64.

	* sysdeps/unix/sysv/linux/i386/getrlimit.c: Add prototype for
	__new_getrlimit.

	* sysdeps/unix/sysv/linux/i386/chown.c: Add prototypes for
	__chown_is_lchown and __real_chown.
This commit is contained in:
Andreas Jaeger 2000-12-28 14:22:22 +00:00
parent 8da8e2dbd2
commit dde52fca48
6 changed files with 30 additions and 0 deletions

View File

@ -1,5 +1,19 @@
2000-12-28 Andreas Jaeger <aj@suse.de>
* sysdeps/generic/dl-environ.c: Add prototype for unsetenv.
* sysdeps/unix/sysv/linux/i386/setrlimit.c: Add prototype for
__new_setrlimit.
* sysdeps/unix/sysv/linux/i386/oldgetrlimit64.c: Add prototype for
__old_getrlimit64.
* sysdeps/unix/sysv/linux/i386/getrlimit.c: Add prototype for
__new_getrlimit.
* sysdeps/unix/sysv/linux/i386/chown.c: Add prototypes for
__chown_is_lchown and __real_chown.
* sysdeps/generic/ldsodefs.h: Add noreturn attribute to
_dl_reloc_bad_type.

View File

@ -21,6 +21,7 @@
#include <ldsodefs.h>
extern char **_environ;
extern void unsetenv (const char *name);
/* Walk through the environment of the process and return all entries
starting with `LD_'. */

View File

@ -39,6 +39,12 @@
extern int __syscall_chown (const char *__file,
__kernel_uid_t __owner, __kernel_gid_t __group);
extern int __chown_is_lchown (const char *__file, uid_t __owner,
gid_t __group);
extern int __real_chown (const char *__file, uid_t __owner, gid_t __group);
#if defined __NR_lchown || __ASSUME_LCHOWN_SYSCALL > 0
/* Running under Linux > 2.1.80. */

View File

@ -31,6 +31,10 @@ extern int __syscall_ugetrlimit (unsigned int resource,
extern int __syscall_getrlimit (unsigned int resource,
struct rlimit *__unbounded rlimits);
extern int __new_getrlimit (enum __rlimit_resource resource,
struct rlimit *__unbounded rlimits);
/* Linux 2.3.25 introduced a new system call since the types used for
the limits are now unsigned. */
#if defined __NR_ugetrlimit && !defined __ASSUME_NEW_GETRLIMIT_SYSCALL

View File

@ -26,6 +26,9 @@
#include <sys/types.h>
extern int __new_getrlimit (enum __rlimit_resource, struct rlimit *);
extern int __old_getrlimit64 (enum __rlimit_resource resource,
struct rlimit64 *rlimits);
/* Put the soft and hard limits for RESOURCE in *RLIMITS.
Returns 0 if successful, -1 if not (and sets errno). */

View File

@ -31,6 +31,8 @@ extern int __syscall_setrlimit (unsigned int resource,
const struct rlimit *__unbounded rlimits);
extern int __syscall_ugetrlimit (unsigned int resource,
const struct rlimit *__unbounded rlimits);
extern int __new_setrlimit (enum __rlimit_resource resource,
const struct rlimit *__unboundedrlimits);
/* Linux 2.3.25 introduced a new system call since the types used for
the limits are now unsigned. */