From 887c6b762e1e7b85a668e75ccea5a13d169925d2 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Thu, 8 Jan 2009 00:01:33 +0000 Subject: * libc/include/sys/stdio.h (_flockfile, _funlockfile): Fix typos. --- newlib/libc/include/sys/stdio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'newlib/libc') diff --git a/newlib/libc/include/sys/stdio.h b/newlib/libc/include/sys/stdio.h index 5ead79462..0918fe157 100644 --- a/newlib/libc/include/sys/stdio.h +++ b/newlib/libc/include/sys/stdio.h @@ -12,7 +12,7 @@ #ifndef __SINGLE_THREAD__ # define _flockfile(fp) (((fp)->_flags & __SSTR) ? 0 : __lock_acquire_recursive((fp)->_lock)) #else -# define _flockfile(fp) (_CASTVOID 0) +# define _flockfile(fp) (_CAST_VOID 0) #endif #endif @@ -20,7 +20,7 @@ #ifndef __SINGLE_THREAD__ # define _funlockfile(fp) (((fp)->_flags & __SSTR) ? 0 : __lock_release_recursive((fp)->_lock)) #else -# define _funlockfile(fp) (_CASTVOID 0) +# define _funlockfile(fp) (_CAST_VOID 0) #endif #endif -- cgit v1.2.3