compile with glibc 2.2.17 and older

This commit is contained in:
albert 2005-01-05 20:50:54 +00:00
parent 55aee6a969
commit 10ac32d68e
2 changed files with 5 additions and 1 deletions

1
NEWS
View File

@ -3,6 +3,7 @@ procps-3.2.4 --> procps-3.2.5
ps: security labels can contain any printable ASCII
top: help and version message on stdout, with exit(0) #283541
ps: SIGTSTP from ^Z shouldn't print bug email address
slabtop: compile with glibc 2.2.17 (and older, likely)
procps-3.2.3 --> procps-3.2.4

View File

@ -11,7 +11,6 @@
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
@ -20,7 +19,11 @@
#include <getopt.h>
#include <ctype.h>
#include <sys/ioctl.h>
#include <sys/select.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include "proc/slab.h"
#include "proc/version.h"