diff options
author | Jim Meyering <jim@meyering.net> | 2002-01-21 19:49:24 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-01-21 19:49:24 +0000 |
commit | c5c6647f22a50997050e6b37a1b4f582899830c2 (patch) | |
tree | a6423ac1d0493b972cfa1a5bbc94f67f460dd1f8 | |
parent | 72d40f6724f8e15cbbc7ddb0d70114e6fdd81e51 (diff) | |
download | coreutils-c5c6647f22a50997050e6b37a1b4f582899830c2.tar.xz |
Don't include "xalloc.h", as system.h already does that via sys2.h.
-rw-r--r-- | src/csplit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/csplit.c b/src/csplit.c index 8ed954a86..14d2ba365 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -1,5 +1,5 @@ /* csplit - split a file into sections determined by context lines - Copyright (C) 91, 1995-2001 Free Software Foundation, Inc. + Copyright (C) 91, 1995-2002 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 @@ -34,7 +34,6 @@ #include "human.h" #include "safe-read.h" #include "xstrtol.h" -#include "xalloc.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "csplit" |