Author: theraven
Date: Sun Dec 25 16:03:54 2011
New Revision: 228875
URL: http://svn.freebsd.org/changeset/base/228875

Log:
  Restore __is_threaded in C++ mode.  Some Google stuff needs it apparently.
  
  Reported by:  swills
  Approved by:  dim (mentor)

Modified:
  head/include/stdio.h

Modified: head/include/stdio.h
==============================================================================
--- head/include/stdio.h        Sun Dec 25 14:29:36 2011        (r228874)
+++ head/include/stdio.h        Sun Dec 25 16:03:54 2011        (r228875)
@@ -470,6 +470,9 @@ static __inline int __sputc(int _c, FILE
                        __swbuf((int)(c), p) : \
                (*(p)->_p = (c), (int)*(p)->_p++))
 #endif
+
+extern int __isthreaded;
+
 #ifndef __cplusplus
 
 #define        __sfeof(p)      (((p)->_flags & __SEOF) != 0)
@@ -477,7 +480,6 @@ static __inline int __sputc(int _c, FILE
 #define        __sclearerr(p)  ((void)((p)->_flags &= ~(__SERR|__SEOF)))
 #define        __sfileno(p)    ((p)->_file)
 
-extern int __isthreaded;
 
 #define        feof(p)         (!__isthreaded ? __sfeof(p) : (feof)(p))
 #define        ferror(p)       (!__isthreaded ? __sferror(p) : (ferror)(p))
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to