Browse Source

Initial revision

Paul Eggert 26 years ago
parent
commit
508b2ae13f
1 changed files with 9 additions and 0 deletions
  1. 9 0
      lib/basename.h

+ 9 - 0
lib/basename.h

@@ -0,0 +1,9 @@
+#ifndef PARAMS
+# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
+#  define PARAMS(Args) Args
+# else
+#  define PARAMS(Args) ()
+# endif
+#endif
+
+char *base_name PARAMS ((char const *name));