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
commit08da7047d0c61ed1e67d96edcc1e83501c241d3d (patch)
treef552256f3dac6da29b7dd617f5ba702cf8ead1e0 /lib/memcoll.h
parent0aa86039dd5e591bdbbbe2eaad770c89bf9e25fa (diff)
downloadcoreutils-08da7047d0c61ed1e67d96edcc1e83501c241d3d.tar.xz
.
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 000000000..4909bddff
--- /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_ */