]> git.saurik.com Git - apple/libc.git/blobdiff - stdio/FreeBSD/ungetc.c
Libc-1439.100.3.tar.gz
[apple/libc.git] / stdio / FreeBSD / ungetc.c
index c98ab5a37765b3abaa1242808e666039d7fbaccb..287fa022737a43a6281ff7af369b24ba73c44ac4 100644 (file)
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
  * 4. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
@@ -38,7 +34,7 @@
 static char sccsid[] = "@(#)ungetc.c   8.2 (Berkeley) 11/3/93";
 #endif /* LIBC_SCCS and not lint */
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD: src/lib/libc/stdio/ungetc.c,v 1.14 2002/08/13 09:30:41 tjr Exp $");
+__FBSDID("$FreeBSD: src/lib/libc/stdio/ungetc.c,v 1.18 2008/04/17 22:17:54 jhb Exp $");
 
 #include "namespace.h"
 #include <stdio.h>
@@ -96,11 +92,10 @@ ungetc(int c, FILE *fp)
 {
        int ret;
 
-       if (c == EOF)
-               return (EOF);
-       if (!__sdidinit)
-               __sinit();
+       pthread_once(&__sdidinit, __sinit);
+
        FLOCKFILE(fp);
+       ORIENT(fp, -1);
        ret = __ungetc(c, fp);
        FUNLOCKFILE(fp);
        return (ret);
@@ -113,8 +108,6 @@ int
 __ungetc(int c, FILE *fp)
 {
 
-       ORIENT(fp, -1);
-
        if (c == EOF)
                return (EOF);
        if ((fp->_flags & __SRD) == 0) {
@@ -165,7 +158,7 @@ __ungetc(int c, FILE *fp)
         * Initially, we will use the `reserve' buffer.
         */
        fp->_ur = fp->_r;
-       fp->_extra->_up = fp->_p;
+       fp->_up = fp->_p;
        fp->_ub._base = fp->_ubuf;
        fp->_ub._size = sizeof(fp->_ubuf);
        fp->_ubuf[sizeof(fp->_ubuf) - 1] = c;