From 42c9f525369ba06742d53d7a89ad00153b317de6 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 13 Feb 2006 08:14:12 +0000 Subject: Add files for IMA. Yes, I know it's a hack and no, I won't split the affected files --- libc/misc/search/hcreate_r.c | 8 ++++++++ libc/misc/search/hdestroy_r.c | 8 ++++++++ libc/misc/search/hsearch_r.c | 8 ++++++++ libc/misc/search/insque.c | 8 ++++++++ libc/misc/search/lfind.c | 8 ++++++++ libc/misc/search/lsearch.c | 8 ++++++++ libc/misc/search/remque.c | 8 ++++++++ libc/misc/search/tdelete.c | 8 ++++++++ libc/misc/search/tdestroy.c | 8 ++++++++ libc/misc/search/tfind.c | 8 ++++++++ libc/misc/search/tsearch.c | 8 ++++++++ libc/misc/search/twalk.c | 8 ++++++++ 12 files changed, 96 insertions(+) create mode 100644 libc/misc/search/hcreate_r.c create mode 100644 libc/misc/search/hdestroy_r.c create mode 100644 libc/misc/search/hsearch_r.c create mode 100644 libc/misc/search/insque.c create mode 100644 libc/misc/search/lfind.c create mode 100644 libc/misc/search/lsearch.c create mode 100644 libc/misc/search/remque.c create mode 100644 libc/misc/search/tdelete.c create mode 100644 libc/misc/search/tdestroy.c create mode 100644 libc/misc/search/tfind.c create mode 100644 libc/misc/search/tsearch.c create mode 100644 libc/misc/search/twalk.c (limited to 'libc/misc/search') 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 + * + * 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 + * + * 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 + * + * 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 + * + * 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 + * + * 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 + * + * 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 + * + * 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 + * + * 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 + * + * 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 + * + * 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 + * + * 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 + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_twalk +#include "_tsearch.c" -- cgit v1.2.3