Changeset 967
- Timestamp:
- Jan 11, 2004, 8:00:09 PM (22 years ago)
- Location:
- trunk/src/emx/src/lib/bsd
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/bsd/db/hash/hash_bigkey.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 35 35 */ 36 36 37 #include "libc-alias.h" /*bird*/ 37 38 #if defined(LIBC_SCCS) && !defined(lint) 38 39 static char sccsid[] = "@(#)hash_bigkey.c 8.3 (Berkeley) 5/31/94"; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/db/hash/hash_buf.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 35 35 */ 36 36 37 #include "libc-alias.h" /*bird*/ 37 38 #if defined(LIBC_SCCS) && !defined(lint) 38 39 static char sccsid[] = "@(#)hash_buf.c 8.5 (Berkeley) 7/15/94"; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/db/hash/hash_func.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 35 35 */ 36 36 37 #include "libc-alias.h" /*bird*/ 37 38 #if defined(LIBC_SCCS) && !defined(lint) 38 39 static char sccsid[] = "@(#)hash_func.c 8.2 (Berkeley) 2/21/94"; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/db/hash/hash_page.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 73 73 74 74 #include <db.h> 75 #ifndef __DBINTERFACE_PRIVATE 76 #error "__DBINTERFACE_PRIVATE is not defined!" 77 #endif 75 78 #include "hash.h" 76 79 #include "page.h" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/db/hash/ndbm.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 35 35 */ 36 36 37 #include "libc-alias.h" /*bird*/ 37 38 #if defined(LIBC_SCCS) && !defined(lint) 38 39 static char sccsid[] = "@(#)ndbm.c 8.4 (Berkeley) 7/21/94"; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/stdlib/hcreate.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 4 4 * Copyright (c) 2001 Christopher G. Demetriou 5 5 * All rights reserved. 6 * 6 * 7 7 * Redistribution and use in source and binary forms, with or without 8 8 * modification, are permitted provided that the following conditions … … 20 20 * 4. The name of the author may not be used to endorse or promote products 21 21 * derived from this software without specific prior written permission. 22 * 22 * 23 23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 24 24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES … … 31 31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 32 32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 * 33 * 34 34 * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>> 35 35 */ … … 47 47 */ 48 48 49 #include "libc-alias.h" 49 50 #include <sys/cdefs.h> 50 51 #if 0 … … 89 90 90 91 int 91 hcreate(size_t nel)92 _STD(hcreate)(size_t nel) 92 93 { 93 94 size_t idx; … … 131 132 132 133 void 133 hdestroy(void)134 _STD(hdestroy)(void) 134 135 { 135 136 struct internal_entry *ie; … … 152 153 153 154 ENTRY * 154 hsearch(ENTRY item, ACTION action)155 _STD(hsearch)(ENTRY item, ACTION action) 155 156 { 156 157 struct internal_head *head; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/stdlib/insque.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 5 5 * 6 6 * As long as the above copyright statement and this notice remain 7 * unchanged, you can do what ever you want with this file. 7 * unchanged, you can do what ever you want with this file. 8 8 */ 9 #include "libc-alias.h" 9 10 #include <sys/cdefs.h> 10 11 __FBSDID("$FreeBSD: src/lib/libc/stdlib/insque.c,v 1.3 2003/01/04 07:34:41 tjr Exp $"); … … 19 20 20 21 void 21 insque(void *element, void *pred)22 _STD(insque)(void *element, void *pred) 22 23 { 23 24 struct que_elem *prev, *next, *elem; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/stdlib/lsearch.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 5 5 * 6 6 * As long as the above copyright statement and this notice remain 7 * unchanged, you can do what ever you want with this file. 7 * unchanged, you can do what ever you want with this file. 8 8 */ 9 #include "libc-alias.h" 9 10 #include <sys/types.h> 10 11 #include <sys/cdefs.h> … … 20 21 int (*)(const void *, const void *), int); 21 22 22 void * lsearch(const void *key, void *base, size_t *nelp, size_t width,23 void *_STD(lsearch)(const void *key, void *base, size_t *nelp, size_t width, 23 24 int (*compar)(const void *, const void *)) 24 25 { … … 27 28 } 28 29 29 void * lfind(const void *key, const void *base, size_t *nelp, size_t width,30 void *_STD(lfind)(const void *key, const void *base, size_t *nelp, size_t width, 30 31 int (*compar)(const void *, const void *)) 31 32 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/stdlib/remque.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 5 5 * 6 6 * As long as the above copyright statement and this notice remain 7 * unchanged, you can do what ever you want with this file. 7 * unchanged, you can do what ever you want with this file. 8 8 */ 9 #include "libc-alias.h" 9 10 #include <sys/cdefs.h> 10 11 __FBSDID("$FreeBSD: src/lib/libc/stdlib/remque.c,v 1.3 2003/01/04 07:34:41 tjr Exp $"); … … 15 16 16 17 void 17 remque(void *element)18 _STD(remque)(void *element) 18 19 { 19 20 struct que_elem *prev, *next, *elem; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/stdlib/tdelete.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 12 12 */ 13 13 14 #include "libc-alias.h" 14 15 #include <sys/cdefs.h> 15 16 #if 0 … … 33 34 */ 34 35 void * 35 tdelete(const void * __restrict vkey, void ** __restrict vrootp,36 _STD(tdelete)(const void * __restrict vkey, void ** __restrict vrootp, 36 37 int (*compar)(const void *, const void *)) 37 38 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/stdlib/tfind.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 12 12 */ 13 13 14 #include "libc-alias.h" 14 15 #include <sys/cdefs.h> 15 16 #if 0 … … 26 27 /* find a node, or return 0 */ 27 28 void * 28 tfind(vkey, vrootp, compar)29 _STD(tfind)(vkey, vrootp, compar) 29 30 const void *vkey; /* key to be found */ 30 31 void * const *vrootp; /* address of the tree root */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/stdlib/tsearch.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 12 12 */ 13 13 14 #include "libc-alias.h" 14 15 #include <sys/cdefs.h> 15 16 #if 0 … … 26 27 /* find or insert datum into search tree */ 27 28 void * 28 tsearch(vkey, vrootp, compar)29 _STD(tsearch)(vkey, vrootp, compar) 29 30 const void *vkey; /* key to be located */ 30 31 void **vrootp; /* address of tree root */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/stdlib/twalk.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r966 r967 12 12 */ 13 13 14 #include "libc-alias.h" 14 15 #include <sys/cdefs.h> 15 16 #if 0 … … 50 51 /* Walk the nodes of a tree */ 51 52 void 52 twalk(vroot, action)53 _STD(twalk)(vroot, action) 53 54 const void *vroot; /* Root of the tree to be walked */ 54 55 void (*action)(const void *, VISIT, int); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.