diff options
author | Jim Meyering <jim@meyering.net> | 1999-01-16 16:04:43 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-01-16 16:04:43 +0000 |
commit | 414cf1b428d876aebb1d44bf432b6db53aa6f072 (patch) | |
tree | f20ed03542d8325198a1fd16fd64877421cb82c5 /lib | |
parent | b76f341922eca4cbb9fd20597041c90d552846b5 (diff) | |
download | coreutils-414cf1b428d876aebb1d44bf432b6db53aa6f072.tar.xz |
(base_name): Declare.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/addext.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/addext.c b/lib/addext.c index 71e395af8..a075ea3b1 100644 --- a/lib/addext.c +++ b/lib/addext.c @@ -1,5 +1,5 @@ /* addext.c -- add an extension to a file name - Copyright (C) 1990, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1990, 1997, 1998, 1999 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 @@ -49,6 +49,8 @@ # include <unistd.h> #endif +char *base_name PARAMS ((char const *)); + /* Append to FILENAME the extension EXT, unless the result would be too long, in which case just append the character E. */ |