summaryrefslogtreecommitdiff
path: root/lib/memcoll.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-07-04 10:38:37 +0000
committerJim Meyering <jim@meyering.net>1999-07-04 10:38:37 +0000
commit8b13b4035ef3cd79149f4a555a84ac632aa73e03 (patch)
tree0f2af87aa0a02593bf4e92834aa73fe8013aca4d /lib/memcoll.h
parent9d80c0d4947dfdded2428bf67a91f545888d39b7 (diff)
downloadgnulib-8b13b4035ef3cd79149f4a555a84ac632aa73e03.tar.gz
.
Diffstat (limited to 'lib/memcoll.h')
-rw-r--r--lib/memcoll.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/memcoll.h b/lib/memcoll.h
new file mode 100644
index 0000000000..4909bddff0
--- /dev/null
+++ b/lib/memcoll.h
@@ -0,0 +1,18 @@
+#ifndef MEMCOLL_H_
+# define MEMCOLL_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 memcoll PARAMS ((char *, size_t, char *, size_t));
+
+#endif /* MEMCOLL_H_ */