mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
* libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
version. 2007-04-25 Jakub Jelinek <jakub@redhat.com> * libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized version.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2007-04-25 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
|
||||||
|
version.
|
||||||
|
|
||||||
2007-04-23 Jakub Jelinek <jakub@redhat.com>
|
2007-04-23 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
[BZ #4381]
|
[BZ #4381]
|
||||||
|
@@ -44,6 +44,16 @@ getchar (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# ifdef __USE_MISC
|
||||||
|
/* Faster version when locking is not necessary. */
|
||||||
|
__STDIO_INLINE int
|
||||||
|
fgetc_unlocked (FILE *__fp)
|
||||||
|
{
|
||||||
|
return _IO_getc_unlocked (__fp);
|
||||||
|
}
|
||||||
|
# endif /* misc */
|
||||||
|
|
||||||
|
|
||||||
# if defined __USE_POSIX || defined __USE_MISC
|
# if defined __USE_POSIX || defined __USE_MISC
|
||||||
/* This is defined in POSIX.1:1996. */
|
/* This is defined in POSIX.1:1996. */
|
||||||
__STDIO_INLINE int
|
__STDIO_INLINE int
|
||||||
|
Reference in New Issue
Block a user