aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/generic/enbl-secure.c4
-rw-r--r--sysdeps/generic/get_clockfreq.c2
-rw-r--r--sysdeps/generic/prof-freq.c1
-rw-r--r--sysdeps/mach/hurd/profil.c4
-rw-r--r--sysdeps/unix/i386/i586/clock_getres.c4
-rw-r--r--sysdeps/unix/i386/i586/clock_gettime.c4
-rw-r--r--sysdeps/unix/sysv/linux/i386/get_clockfreq.c1
-rw-r--r--sysdeps/unix/sysv/linux/init-first.c3
8 files changed, 12 insertions, 11 deletions
diff --git a/sysdeps/generic/enbl-secure.c b/sysdeps/generic/enbl-secure.c
index 7dcd439..fac79ea 100644
--- a/sysdeps/generic/enbl-secure.c
+++ b/sysdeps/generic/enbl-secure.c
@@ -1,5 +1,5 @@
/* Define and initialize the `__libc_enable_secure' flag. Generic version.
- Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997, 1998, 2000 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
@@ -21,7 +21,7 @@
dl-sysdep.c defines and initializes __libc_enable_secure. */
#include <unistd.h>
-
+#include <libc-internal.h>
/* Safest assumption, if somehow the initializer isn't run. */
int __libc_enable_secure = 1;
diff --git a/sysdeps/generic/get_clockfreq.c b/sysdeps/generic/get_clockfreq.c
index 210ba27..94f233c 100644
--- a/sysdeps/generic/get_clockfreq.c
+++ b/sysdeps/generic/get_clockfreq.c
@@ -17,6 +17,8 @@
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
+#include <libc-internal.h>
+
unsigned long long int
__get_clockfreq (void)
{
diff --git a/sysdeps/generic/prof-freq.c b/sysdeps/generic/prof-freq.c
index 43b421d..0610534 100644
--- a/sysdeps/generic/prof-freq.c
+++ b/sysdeps/generic/prof-freq.c
@@ -31,6 +31,7 @@
#include <sys/types.h>
#include <sys/time.h>
+#include <libc-internal.h>
int
__profile_frequency (void)
diff --git a/sysdeps/mach/hurd/profil.c b/sysdeps/mach/hurd/profil.c
index 365b11b..f070d69 100644
--- a/sysdeps/mach/hurd/profil.c
+++ b/sysdeps/mach/hurd/profil.c
@@ -1,5 +1,5 @@
/* Low-level statistical profiling support function. Mach/Hurd version.
- Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1997, 2000 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
@@ -25,6 +25,8 @@
#include <mach/pc_sample.h>
#include <cthreads.h>
#include <assert.h>
+#include <libc-internal.h>
+
#define MAX_PC_SAMPLES 512 /* XXX ought to be exported in kernel hdr */
diff --git a/sysdeps/unix/i386/i586/clock_getres.c b/sysdeps/unix/i386/i586/clock_getres.c
index 49986f8..dd0af53 100644
--- a/sysdeps/unix/i386/i586/clock_getres.c
+++ b/sysdeps/unix/i386/i586/clock_getres.c
@@ -18,6 +18,7 @@
#include <sys/param.h>
#include <sys/time.h>
+#include <libc-internal.h>
/* This implementation uses the TSC register in modern (i586 and up) IA-32
processors (most modern clones also provide it). Since we need the
@@ -27,9 +28,6 @@
faster processors will not work without changes. */
-/* Function to determine processor frequency. */
-extern unsigned long long int __get_clockfreq (void);
-
/* Clock frequency of the processor. We make it a 64-bit variable
because some jokers are already playing with processors with more
than 4GHz. */
diff --git a/sysdeps/unix/i386/i586/clock_gettime.c b/sysdeps/unix/i386/i586/clock_gettime.c
index 5d0e9f4..636744e4 100644
--- a/sysdeps/unix/i386/i586/clock_gettime.c
+++ b/sysdeps/unix/i386/i586/clock_gettime.c
@@ -17,6 +17,7 @@
Boston, MA 02111-1307, USA. */
#include <sys/time.h>
+#include <libc-internal.h>
/* This implementation uses the TSC register in modern (i586 and up) IA-32
processors (most modern clones also provide it). Since we need the
@@ -26,9 +27,6 @@
faster processors will not work without changes. */
-/* Function to determine processor frequency. */
-extern unsigned long long int __get_clockfreq (void);
-
/* Clock frequency of the processor. We make it a 64-bit variable
because some jokers are already playing with processors with more
than 4GHz. */
diff --git a/sysdeps/unix/sysv/linux/i386/get_clockfreq.c b/sysdeps/unix/sysv/linux/i386/get_clockfreq.c
index 26784c6..ec6c174 100644
--- a/sysdeps/unix/sysv/linux/i386/get_clockfreq.c
+++ b/sysdeps/unix/sysv/linux/i386/get_clockfreq.c
@@ -21,6 +21,7 @@
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
+#include <libc-internal.h>
unsigned long long int
diff --git a/sysdeps/unix/sysv/linux/init-first.c b/sysdeps/unix/sysv/linux/init-first.c
index 0e5b4a2..af4e9c6 100644
--- a/sysdeps/unix/sysv/linux/init-first.c
+++ b/sysdeps/unix/sysv/linux/init-first.c
@@ -26,14 +26,13 @@
#include <sys/param.h>
#include <sys/types.h>
#include "kernel-features.h"
+#include <libc-internal.h>
#ifndef SHARED
# include "dl-osinfo.h"
#endif
-extern void __libc_init_secure (void);
extern void __libc_init (int, char **, char **);
-extern void __libc_global_ctors (void);
/* The function is called from assembly stubs the compiler can't see. */
static void init (int, char **, char **) __attribute__ ((unused));