OpenGrok
Cross Reference: twalk.c
xref
: /
src
/
lib
/
libc
/
stdlib
/
twalk.c
Home
|
History
|
Annotate
|
Download
|
only in
stdlib
History log of
/src/lib/libc/stdlib/twalk.c
Revision
Date
Author
Comments
1.4
20-Mar-2012
matt
Remove use of __P
Switch to using C89 definitions.
1.3
18-May-2011
dsl
branches: 1.3.4;
Remove __P()
1.2
16-Sep-1999
lukem
* use _DIAGASSERT() to check pointer arguments against NULL and file
descriptors against -1 (as appropriate).
* add actual checks which to detect stuff that would trigger_DIAGASSERT(),
and attempt to return a sane error condition.
* knf some code
* remove some `register' decls.
the first two items result in the addition of code similar to the
following in various functions:
_DIAGASSERT(path != NULL)
#ifdef _DIAGNOSTIC
if (path == NULL) {
errno = EFAULT;
return (-1);
}
#endif
1.1
22-Feb-1999
christos
t{search,find,walk,delete} from OpenBSD via Neil A. Carson
1.3.4.1
17-Apr-2012
yamt
sync with head
Indexes created Thu Sep 25 16:09:42 GMT 2025