From 640ac3f1bf2e575b514645fc03cceeeacf7bd845 Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Sun, 11 Nov 2012 15:46:01 -0800 Subject: Fix check-localplt regressions on sparc. * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Include inttypes.h (__get_clockfreq_via_proc_openprom): Use __open, __read, and __close rather than their public counterparts. --- sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c') diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c b/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c index cb31e5ca2e..2c9812e4b4 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -123,14 +124,14 @@ __get_clockfreq_via_proc_openprom (void) int clkfreq_fd; __stpcpy (prop, "/clock-frequency"); - clkfreq_fd = open (node, O_RDONLY); + clkfreq_fd = __open (node, O_RDONLY); if (clkfreq_fd != -1) { - if (read (clkfreq_fd, type_string, - sizeof (type_string)) > 0) + if (__read (clkfreq_fd, type_string, + sizeof (type_string)) > 0) result = (hp_timing_t) strtoumax (type_string, NULL, 16); - close (clkfreq_fd); + __close (clkfreq_fd); } } __close (fd); -- cgit 1.4.1