diff options
author | Jim Meyering <jim@meyering.net> | 2005-12-28 10:22:41 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-12-28 10:22:41 +0000 |
commit | 67e065e79d5858e5959578e94e2b161b4b5c24dc (patch) | |
tree | 6e9748631ed897d0e81e982936c5aef8f0a04117 | |
parent | eb330d25844d5dba0b3f24fb7ca470d783d5bfe7 (diff) | |
download | coreutils-67e065e79d5858e5959578e94e2b161b4b5c24dc.tar.xz |
Don't include <assert.h>; it wasn't used.
-rw-r--r-- | src/cp.c | 1 | ||||
-rw-r--r-- | src/df.c | 1 | ||||
-rw-r--r-- | src/link.c | 1 | ||||
-rw-r--r-- | src/mknod.c | 1 | ||||
-rw-r--r-- | src/nice.c | 3 | ||||
-rw-r--r-- | src/sleep.c | 1 | ||||
-rw-r--r-- | src/unlink.c | 1 |
7 files changed, 0 insertions, 9 deletions
@@ -20,7 +20,6 @@ #include <config.h> #include <stdio.h> #include <sys/types.h> -#include <assert.h> #include <getopt.h> #include "system.h" @@ -23,7 +23,6 @@ #include <stdio.h> #include <sys/types.h> #include <getopt.h> -#include <assert.h> #include "system.h" #include "canonicalize.h" diff --git a/src/link.c b/src/link.c index c0ae7d549..277cf2352 100644 --- a/src/link.c +++ b/src/link.c @@ -25,7 +25,6 @@ #include <stdio.h> #include <getopt.h> #include <sys/types.h> -#include <assert.h> #include "system.h" #include "error.h" diff --git a/src/mknod.c b/src/mknod.c index e451f15c0..4fd81f535 100644 --- a/src/mknod.c +++ b/src/mknod.c @@ -19,7 +19,6 @@ #include <config.h> #include <stdio.h> -#include <assert.h> #include <getopt.h> #include <sys/types.h> diff --git a/src/nice.c b/src/nice.c index 7f19aeb1b..19b38bc34 100644 --- a/src/nice.c +++ b/src/nice.c @@ -19,9 +19,6 @@ #include <config.h> #include <stdio.h> - -#include <assert.h> - #include <getopt.h> #include <sys/types.h> diff --git a/src/sleep.c b/src/sleep.c index 6ff81b805..730b19d17 100644 --- a/src/sleep.c +++ b/src/sleep.c @@ -17,7 +17,6 @@ #include <config.h> #include <stdio.h> -#include <assert.h> #include <sys/types.h> #include <getopt.h> diff --git a/src/unlink.c b/src/unlink.c index 263292cdc..725507649 100644 --- a/src/unlink.c +++ b/src/unlink.c @@ -25,7 +25,6 @@ #include <stdio.h> #include <getopt.h> #include <sys/types.h> -#include <assert.h> #include "system.h" #include "error.h" |