From bd1806f708eeb6da8682e1612f5e21fa3a664be5 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 3 Jul 2005 07:14:28 +0000 Subject: Include fcntl--.h rather than fcntl.h. Do not include unistd-safer.h. (getloadavg): Don't call fd_safer; no longer needed now that we include fcntl--.h. --- lib/getloadavg.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/getloadavg.c b/lib/getloadavg.c index 9a4988e8b..bf57e1040 100644 --- a/lib/getloadavg.c +++ b/lib/getloadavg.c @@ -445,9 +445,7 @@ # include # endif -# include - -# include "unistd-safer.h" +# include "fcntl--.h" /* Avoid static vars inside a function since in HPUX they dump as pure. */ @@ -907,7 +905,7 @@ getloadavg (double loadavg[], int nelem) if (!getloadavg_initialized) { # ifndef SUNOS_5 - channel = fd_safer (open ("/dev/kmem", O_RDONLY)); + channel = open ("/dev/kmem", O_RDONLY); if (channel >= 0) { /* Set the channel to close on exec, so it does not -- cgit v1.2.3-54-g00ecf