diff options
author | Jim Meyering <jim@meyering.net> | 2000-11-16 19:34:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-11-16 19:34:23 +0000 |
commit | 1f789a22a270ce84402e7960745bfd0e9954a4ef (patch) | |
tree | bec6f75f56f90a2daba3049a8b2e959821187afb /src | |
parent | 0354ab509ee3e057fd282589d58d500de4b3a92d (diff) | |
download | coreutils-1f789a22a270ce84402e7960745bfd0e9954a4ef.tar.xz |
Include sys/types.h before system.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/tsort.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tsort.c b/src/tsort.c index be0be95d3..1052ffbbc 100644 --- a/src/tsort.c +++ b/src/tsort.c @@ -26,6 +26,7 @@ #include <stdio.h> #include <assert.h> #include <getopt.h> +#include <sys/types.h> #include "system.h" #include "closeout.h" |