diff options
author | Jim Meyering <jim@meyering.net> | 1995-12-22 05:31:17 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-12-22 05:31:17 +0000 |
commit | b808e709404ebc4f5d4f25e62cb878b9c9e6e8f6 (patch) | |
tree | 61936b9d2bee681f254c33d17624d3ee291e96f9 /src | |
parent | 654ad9e596595ecb17fabe34fe9595a765b6adee (diff) | |
download | coreutils-b808e709404ebc4f5d4f25e62cb878b9c9e6e8f6.tar.xz |
Include argmatch.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/ls.c | 2 | ||||
-rw-r--r-- | src/touch.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -62,6 +62,7 @@ #include "ls.h" #include "version.h" #include "error.h" +#include "argmatch.h" #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free @@ -122,7 +123,6 @@ char *getgroup (); char *getuser (); char *xmalloc (); char *xrealloc (); -int argmatch (); void invalid_arg (); static char *make_link_path __P ((char *path, char *linkname)); diff --git a/src/touch.c b/src/touch.c index 961d365cd..fbe542743 100644 --- a/src/touch.c +++ b/src/touch.c @@ -40,13 +40,13 @@ #include "system.h" #include "version.h" #include "error.h" +#include "argmatch.h" #ifndef STDC_HEADERS time_t mktime (); time_t time (); #endif -int argmatch (); time_t get_date (); time_t posixtime (); int safe_read (); |