summaryrefslogtreecommitdiff
path: root/lib/basename.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-09-26 18:37:02 +0000
committerJim Meyering <jim@meyering.net>1999-09-26 18:37:02 +0000
commit6710abd4ae3935e6ded11489fcd71188c2233173 (patch)
tree66d9ce52c5b7f2c33bc32dba6da42045482c68cb /lib/basename.c
parent566b0c41e3e889059dea0aedc1bccc7285b6138b (diff)
downloadcoreutils-6710abd4ae3935e6ded11489fcd71188c2233173.tar.xz
(base_name): Add prototype. From Akim Demaille.
Diffstat (limited to 'lib/basename.c')
-rw-r--r--lib/basename.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/basename.c b/lib/basename.c
index e648b1a7e..f2babbee2 100644
--- a/lib/basename.c
+++ b/lib/basename.c
@@ -23,10 +23,20 @@
# define FILESYSTEM_PREFIX_LEN(Filename) 0
#endif
+#ifndef PARAMS
+# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
+# define PARAMS(Args) Args
+# else
+# define PARAMS(Args) ()
+# endif
+#endif
+
#ifndef ISSLASH
# define ISSLASH(C) ((C) == '/')
#endif
+char *base_name PARAMS ((char const *name));
+
/* In general, we can't use the builtin `basename' function if available,
since it has different meanings in different environments.
In some environments the builtin `basename' modifies its argument.