summaryrefslogtreecommitdiff
path: root/lib/same.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-05-23 19:43:10 +0000
committerJim Meyering <jim@meyering.net>1999-05-23 19:43:10 +0000
commit5052916e199429bb498b70624d6095afef2e53a5 (patch)
treecfb4e2ab1cadd606fe222d025ab28176b82c40d1 /lib/same.h
parent1fe04cbac9d93ed7e9f4e2646f5902b64784741b (diff)
downloadgnulib-5052916e199429bb498b70624d6095afef2e53a5.tar.gz
*** empty log message ***
Diffstat (limited to 'lib/same.h')
-rw-r--r--lib/same.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/same.h b/lib/same.h
new file mode 100644
index 0000000000..2f1d44d4de
--- /dev/null
+++ b/lib/same.h
@@ -0,0 +1,19 @@
+#ifndef SAME_H_
+# define SAME_H_ 1
+
+# if HAVE_CONFIG_H
+# include <config.h>
+# endif
+
+# ifndef PARAMS
+# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
+# define PARAMS(Args) Args
+# else
+# define PARAMS(Args) ()
+# endif
+# endif
+
+int
+same_name PARAMS ((const char *source, const char *dest));
+
+#endif /* SAME_H_ */