diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-23 07:05:41 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-23 07:05:41 +0000 |
commit | effc1da025d58ee4ece2f90af8cb810d8315d8f5 (patch) | |
tree | 2682edf19cf2aa1871a1705b7e7ce829910ecad1 /src | |
parent | 01b894929924a8a6bd528d3d36c65b9b374c5708 (diff) | |
download | coreutils-effc1da025d58ee4ece2f90af8cb810d8315d8f5.tar.xz |
Don't include sys/time.h; system.h already does it.
Diffstat (limited to 'src')
-rw-r--r-- | src/nice.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nice.c b/src/nice.c index 1af3b33c4..b05b6cc41 100644 --- a/src/nice.c +++ b/src/nice.c @@ -1,5 +1,5 @@ /* nice -- run a program with modified scheduling priority - Copyright (C) 1990-2002 Free Software Foundation, Inc. + Copyright (C) 1990-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -25,7 +25,6 @@ #include <getopt.h> #include <sys/types.h> #ifndef NICE_PRIORITY -# include <sys/time.h> # include <sys/resource.h> #endif |