aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic')
-rw-r--r--sysdeps/generic/fxstat64.c6
-rw-r--r--sysdeps/generic/getpagesize.c5
-rw-r--r--sysdeps/generic/getpgid.c5
-rw-r--r--sysdeps/generic/getpid.c4
4 files changed, 16 insertions, 4 deletions
diff --git a/sysdeps/generic/fxstat64.c b/sysdeps/generic/fxstat64.c
index cd47a03baa..bcc7265e18 100644
--- a/sysdeps/generic/fxstat64.c
+++ b/sysdeps/generic/fxstat64.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1996, 1997, 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
@@ -20,6 +20,8 @@
#include <stddef.h>
#include <sys/stat.h>
+#undef __fxstat64
+
/* Get information about the file descriptor FD in BUF. */
int
__fxstat64 (int vers, int fd, struct stat64 *buf)
@@ -46,3 +48,5 @@ __fxstat64 (int vers, int fd, struct stat64 *buf)
}
stub_warning (fstat64)
#include <stub-tag.h>
+
+INTDEF(__fxstat64)
diff --git a/sysdeps/generic/getpagesize.c b/sysdeps/generic/getpagesize.c
index 402e5650a8..bfedd4c2c2 100644
--- a/sysdeps/generic/getpagesize.c
+++ b/sysdeps/generic/getpagesize.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1993, 1995, 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1993, 1995, 1996, 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
@@ -19,6 +19,8 @@
#include <errno.h>
#include <unistd.h>
+#undef __getpagesize
+
/* Return the system page size. */
int
__getpagesize ()
@@ -28,5 +30,6 @@ __getpagesize ()
}
stub_warning (getpagesize)
+INTDEF(__getpagesize)
weak_alias (__getpagesize, getpagesize)
#include <stub-tag.h>
diff --git a/sysdeps/generic/getpgid.c b/sysdeps/generic/getpgid.c
index 252f3ffbfb..ed49b7d663 100644
--- a/sysdeps/generic/getpgid.c
+++ b/sysdeps/generic/getpgid.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1991,1995,1996,1997,1998,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
@@ -19,6 +19,8 @@
#include <unistd.h>
#include <sys/types.h>
+#undef __getpgid
+
/* Get the process group ID of process PID. */
pid_t
__getpgid (pid)
@@ -26,6 +28,7 @@ __getpgid (pid)
{
return pid;
}
+INTDEF(__getpgid)
weak_alias (__getpgid, getpgid)
stub_warning (getpgid)
diff --git a/sysdeps/generic/getpid.c b/sysdeps/generic/getpid.c
index d0a95f47b1..33b1cebe2c 100644
--- a/sysdeps/generic/getpid.c
+++ b/sysdeps/generic/getpid.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1996, 1997, 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
@@ -19,6 +19,7 @@
#include <errno.h>
#include <unistd.h>
+#undef __getpid
/* Get the process ID of the calling process. */
int
@@ -29,5 +30,6 @@ __getpid ()
}
stub_warning (getpid)
+INTDEF(__getpid)
weak_alias (__getpid, getpid)
#include <stub-tag.h>