summaryrefslogtreecommitdiffstats
path: root/lib/libc/nls/catopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/nls/catopen.c')
-rw-r--r--lib/libc/nls/catopen.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/libc/nls/catopen.c b/lib/libc/nls/catopen.c
new file mode 100644
index 0000000..5dfb727
--- /dev/null
+++ b/lib/libc/nls/catopen.c
@@ -0,0 +1,26 @@
+/* $Id$ */
+
+/*
+ * Written by J.T. Conklin, 10/05/94
+ * Public domain.
+ */
+
+#include <sys/cdefs.h>
+
+#ifdef __indr_reference
+__indr_reference(_catopen,catopen);
+#else
+
+#include <nl_types.h>
+
+extern nl_catd _catopen __P((__const char *, int));
+
+nl_catd
+catopen(name, oflag)
+ __const char *name;
+ int oflag;
+{
+ return _catopen(name, oflag);
+}
+
+#endif
OpenPOWER on IntegriCloud