* libc/include/sys/stdio.h (_flockfile, _funlockfile): Fix typos.
This commit is contained in:
parent
b821b6b557
commit
887c6b762e
@ -1,3 +1,7 @@
|
|||||||
|
2009-01-07 Kazu Hirata <kazu@codesourcery.com>
|
||||||
|
|
||||||
|
* libc/include/sys/stdio.h (_flockfile, _funlockfile): Fix typos.
|
||||||
|
|
||||||
2009-01-05 Craig Howland <howland@LGSInnovations.com>
|
2009-01-05 Craig Howland <howland@LGSInnovations.com>
|
||||||
|
|
||||||
* libc/stdio/fwide.c: Correct typo in TRAD_SYNOPSIS for _fwide_r.
|
* libc/stdio/fwide.c: Correct typo in TRAD_SYNOPSIS for _fwide_r.
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#ifndef __SINGLE_THREAD__
|
#ifndef __SINGLE_THREAD__
|
||||||
# define _flockfile(fp) (((fp)->_flags & __SSTR) ? 0 : __lock_acquire_recursive((fp)->_lock))
|
# define _flockfile(fp) (((fp)->_flags & __SSTR) ? 0 : __lock_acquire_recursive((fp)->_lock))
|
||||||
#else
|
#else
|
||||||
# define _flockfile(fp) (_CASTVOID 0)
|
# define _flockfile(fp) (_CAST_VOID 0)
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
#ifndef __SINGLE_THREAD__
|
#ifndef __SINGLE_THREAD__
|
||||||
# define _funlockfile(fp) (((fp)->_flags & __SSTR) ? 0 : __lock_release_recursive((fp)->_lock))
|
# define _funlockfile(fp) (((fp)->_flags & __SSTR) ? 0 : __lock_release_recursive((fp)->_lock))
|
||||||
#else
|
#else
|
||||||
# define _funlockfile(fp) (_CASTVOID 0)
|
# define _funlockfile(fp) (_CAST_VOID 0)
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user