summaryrefslogtreecommitdiff
path: root/libc/misc/search
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-02-13 08:14:12 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-02-13 08:14:12 +0000
commit42c9f525369ba06742d53d7a89ad00153b317de6 (patch)
tree384ccc4bd211f66950ae1b72bf7b3188c58c4d56 /libc/misc/search
parent12c4a2b9298f6bb4320509b8bb21ba0aa2d4392d (diff)
Add files for IMA. Yes, I know it's a hack and no, I won't split the affected files
Diffstat (limited to 'libc/misc/search')
-rw-r--r--libc/misc/search/hcreate_r.c8
-rw-r--r--libc/misc/search/hdestroy_r.c8
-rw-r--r--libc/misc/search/hsearch_r.c8
-rw-r--r--libc/misc/search/insque.c8
-rw-r--r--libc/misc/search/lfind.c8
-rw-r--r--libc/misc/search/lsearch.c8
-rw-r--r--libc/misc/search/remque.c8
-rw-r--r--libc/misc/search/tdelete.c8
-rw-r--r--libc/misc/search/tdestroy.c8
-rw-r--r--libc/misc/search/tfind.c8
-rw-r--r--libc/misc/search/tsearch.c8
-rw-r--r--libc/misc/search/twalk.c8
12 files changed, 96 insertions, 0 deletions
diff --git a/libc/misc/search/hcreate_r.c b/libc/misc/search/hcreate_r.c
new file mode 100644
index 000000000..b62991e46
--- /dev/null
+++ b/libc/misc/search/hcreate_r.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_hcreate_r
+#include "_hsearch_r.c"
diff --git a/libc/misc/search/hdestroy_r.c b/libc/misc/search/hdestroy_r.c
new file mode 100644
index 000000000..98e1ddbe7
--- /dev/null
+++ b/libc/misc/search/hdestroy_r.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_hdestroy_r
+#include "_hsearch_r.c"
diff --git a/libc/misc/search/hsearch_r.c b/libc/misc/search/hsearch_r.c
new file mode 100644
index 000000000..48bdf2d61
--- /dev/null
+++ b/libc/misc/search/hsearch_r.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_hsearch_r
+#include "_hsearch_r.c"
diff --git a/libc/misc/search/insque.c b/libc/misc/search/insque.c
new file mode 100644
index 000000000..fc5bf807e
--- /dev/null
+++ b/libc/misc/search/insque.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_insque
+#include "insremque.c"
diff --git a/libc/misc/search/lfind.c b/libc/misc/search/lfind.c
new file mode 100644
index 000000000..66111c5a4
--- /dev/null
+++ b/libc/misc/search/lfind.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_lfind
+#include "_lsearch.c"
diff --git a/libc/misc/search/lsearch.c b/libc/misc/search/lsearch.c
new file mode 100644
index 000000000..1e632975f
--- /dev/null
+++ b/libc/misc/search/lsearch.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_lsearch
+#include "_lsearch.c"
diff --git a/libc/misc/search/remque.c b/libc/misc/search/remque.c
new file mode 100644
index 000000000..bab698505
--- /dev/null
+++ b/libc/misc/search/remque.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_remque
+#include "insremque.c"
diff --git a/libc/misc/search/tdelete.c b/libc/misc/search/tdelete.c
new file mode 100644
index 000000000..33d9fe8a6
--- /dev/null
+++ b/libc/misc/search/tdelete.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_tdelete
+#include "_tsearch.c"
diff --git a/libc/misc/search/tdestroy.c b/libc/misc/search/tdestroy.c
new file mode 100644
index 000000000..3e397ea8c
--- /dev/null
+++ b/libc/misc/search/tdestroy.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_tdestroy
+#include "_tsearch.c"
diff --git a/libc/misc/search/tfind.c b/libc/misc/search/tfind.c
new file mode 100644
index 000000000..e5a316172
--- /dev/null
+++ b/libc/misc/search/tfind.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_tfind
+#include "_tsearch.c"
diff --git a/libc/misc/search/tsearch.c b/libc/misc/search/tsearch.c
new file mode 100644
index 000000000..8984fc1d5
--- /dev/null
+++ b/libc/misc/search/tsearch.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_tsearch
+#include "_tsearch.c"
diff --git a/libc/misc/search/twalk.c b/libc/misc/search/twalk.c
new file mode 100644
index 000000000..f36d341f5
--- /dev/null
+++ b/libc/misc/search/twalk.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_twalk
+#include "_tsearch.c"