Revision tags: release/4.7.0_cvs |
|
#
a23db957 |
| 03-Oct-2002 |
Mike Barcroft <mike@FreeBSD.org> |
Fix various style(9) bugs: o Source ID's in wrong location. o Space used, instead of tab, after typedef. o Unaligned function prototype for twalk().
Other changes: o Add missing const qualifier in t
Fix various style(9) bugs: o Source ID's in wrong location. o Space used, instead of tab, after typedef. o Unaligned function prototype for twalk().
Other changes: o Add missing const qualifier in tfind(). o Add comment about missing functions.
show more ...
|
#
58d38e25 |
| 06-Sep-2002 |
Tim J. Robbins <tjr@FreeBSD.org> |
Style: One space between "restrict" qualifier and "*".
|
#
abbd8902 |
| 21-Aug-2002 |
Mike Barcroft <mike@FreeBSD.org> |
o Merge <machine/ansi.h> and <machine/types.h> into a new header called <machine/_types.h>. o <machine/ansi.h> will continue to live so it can define MD clock macros, which are only MD because of
o Merge <machine/ansi.h> and <machine/types.h> into a new header called <machine/_types.h>. o <machine/ansi.h> will continue to live so it can define MD clock macros, which are only MD because of gratuitous differences between architectures. o Change all headers to make use of this. This mainly involves changing: #ifdef _BSD_FOO_T_ typedef _BSD_FOO_T_ foo_t; #undef _BSD_FOO_T_ #endif to: #ifndef _FOO_T_DECLARED typedef __foo_t foo_t; #define _FOO_T_DECLARED #endif
Concept by: bde Reviewed by: jake, obrien
show more ...
|
#
840b798c |
| 14-Aug-2002 |
Robert Drehmel <robert@FreeBSD.org> |
- Add the 'restrict' qualifier to match the IEEE Std 1003.1-2001 prototype of the tdelete(3) function. - Remove duplicated space. - Use an ANSI-C function definition for tdelete(3). - Update th
- Add the 'restrict' qualifier to match the IEEE Std 1003.1-2001 prototype of the tdelete(3) function. - Remove duplicated space. - Use an ANSI-C function definition for tdelete(3). - Update the manual page.
show more ...
|
Revision tags: release/4.6.2_cvs, release/4.6.2, release/4.6.1, release/4.6.0_cvs |
|
#
bb28f3c2 |
| 23-Mar-2002 |
Warner Losh <imp@FreeBSD.org> |
Breath deep and take __P out of the system include files.
# This appears to not break X11, but I'm having problems compiling the # glide part of the server with or without this patch, so I can't tel
Breath deep and take __P out of the system include files.
# This appears to not break X11, but I'm having problems compiling the # glide part of the server with or without this patch, so I can't tell # for sure.
show more ...
|
Revision tags: release/4.5.0_cvs, release/4.4.0_cvs, release/4.3.0_cvs, release/4.3.0, release/4.2.0, release/4.1.1_cvs, release/4.1.0 |
|
#
e31830e9 |
| 07-Jul-2000 |
Alfred Perlstein <alfred@FreeBSD.org> |
fix spelling errors.
Pointed out by: bde
|
#
55241422 |
| 06-Jul-2000 |
Alfred Perlstein <alfred@FreeBSD.org> |
cleanup the tsearch import.
remove (comment out) functions defined or depricated elsewhere: bsearch, lfind, lsearch, insque, remque
change hcreate to take a size_t rather than uint (essentially t
cleanup the tsearch import.
remove (comment out) functions defined or depricated elsewhere: bsearch, lfind, lsearch, insque, remque
change hcreate to take a size_t rather than uint (essentially the same)
since hcreate/hdestroy are now in <search.h>, remove private search.h in lib/libc/db/hash/
add $FreeBSD tags to hsearch.c
show more ...
|
#
64566a3e |
| 01-Jul-2000 |
Alfred Perlstein <alfred@FreeBSD.org> |
bring in binary search tree code.
Obtained from: NetBSD
|