diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-03-09 19:21:43 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-03-09 19:21:43 +0000 |
commit | 0040b0209cf8d0d2ae66a2ab184bc13d33c3bed3 (patch) | |
tree | 5e90dcc91c9d23d04e60186aa026fc8bc3058de2 /lib | |
parent | b3c509e6ae86a38064d86f9fb0536a64b317be1c (diff) | |
download | coreutils-0040b0209cf8d0d2ae66a2ab184bc13d33c3bed3.tar.xz |
Include intprops.h instead of limits.h.
(INT_STRLEN_BOUND): Remove.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/getloadavg.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/getloadavg.c b/lib/getloadavg.c index 8b6067b8c..7732ddd0d 100644 --- a/lib/getloadavg.c +++ b/lib/getloadavg.c @@ -1,7 +1,7 @@ /* Get the system load averages. Copyright (C) 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994, - 1995, 1997, 1999, 2000, 2003, 2004 Free Software Foundation, Inc. + 1995, 1997, 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. NOTE: The canonical source of this file is maintained with gnulib. Bugs can be reported to bug-gnulib@gnu.org. @@ -104,6 +104,7 @@ # include "c-strtod.h" # include "cloexec.h" +# include "intprops.h" # include "xalloc.h" /* The existing Emacs configuration files define a macro called @@ -349,8 +350,6 @@ # include <unistd.h> # endif -# include <limits.h> - /* LOAD_AVE_TYPE should only get defined if we're going to use the nlist method. */ # if !defined (LOAD_AVE_TYPE) && (defined (BSD) || defined (LDAV_CVT) || defined (KERNEL_FILE) || defined (LDAV_SYMBOL)) @@ -578,11 +577,6 @@ getloadavg (double loadavg[], int nelem) # define LINUX_LDAV_FILE "/proc/loadavg" # endif -/* Upper bound on the string length of an integer converted to string. - 302 / 1000 is ceil (log10 (2.0)). Subtract 1 for the sign bit; - add 1 for integer division truncation; add 1 more for a minus sign. */ -# define INT_STRLEN_BOUND(t) ((sizeof (t) * CHAR_BIT - 1) * 302 / 1000 + 2) - char ldavgbuf[3 * (INT_STRLEN_BOUND (long int) + sizeof ".00")]; char const *ptr = ldavgbuf; int fd, count; |