* libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
authorJakub Jelinek <jakub@redhat.com>
Wed, 25 Apr 2007 14:35:54 +0000 (14:35 +0000)
committerJakub Jelinek <jakub@redhat.com>
Wed, 25 Apr 2007 14:35:54 +0000 (14:35 +0000)
version.
2007-04-25  Jakub Jelinek  <jakub@redhat.com>

* libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
version.

ChangeLog
libio/bits/stdio.h

index 2e5f9d0..e1324c8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        [BZ #4381]
index 2731162..4d23f28 100644 (file)
@@ -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
 /* This is defined in POSIX.1:1996.  */
 __STDIO_INLINE int