diff options
author | Rob Landley <rob@landley.net> | 2006-04-25 18:42:23 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-04-25 18:42:23 +0000 |
commit | 7818a422bc9a9dee61b1c3d87786d1724fb9b20a (patch) | |
tree | 9765af71c01d43c95a926513dd7140bd330edf4f /libbb/procps.c | |
parent | 997650b9720a3e1302114f0aa37b7625cdf31b85 (diff) |
Portability tweak from Shaun Jackman, don't include asm/page.h directly.
Diffstat (limited to 'libbb/procps.c')
-rw-r--r-- | libbb/procps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/procps.c b/libbb/procps.c index 25f42ffc8..305a71723 100644 --- a/libbb/procps.c +++ b/libbb/procps.c @@ -11,8 +11,8 @@ #include <dirent.h> #include <string.h> #include <stdlib.h> +#include <sys/param.h> #include <unistd.h> -#include <asm/page.h> #include <fcntl.h> #include "libbb.h" |