]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Don't include sys/time.h; system.h already does it.
authorJim Meyering <jim@meyering.net>
Wed, 23 Jul 2003 07:05:41 +0000 (07:05 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 23 Jul 2003 07:05:41 +0000 (07:05 +0000)
src/nice.c

index 1af3b33c42bac5dbcc8d5873054160b875eb3dd8..b05b6cc41b01ff064a061b07f24b7b3113c40dd4 100644 (file)
@@ -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