summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authortheraven <theraven@FreeBSD.org>2011-12-25 16:03:54 +0000
committertheraven <theraven@FreeBSD.org>2011-12-25 16:03:54 +0000
commit31d1910e85e83de7c8f8c1473440cfa1968dec9d (patch)
treeea19e80bf36b77bc3d877a7ea970d17665260642 /include
parent51ccfb890c860947771ac3bcd3da8f19752c6dec (diff)
downloadFreeBSD-src-31d1910e85e83de7c8f8c1473440cfa1968dec9d.zip
FreeBSD-src-31d1910e85e83de7c8f8c1473440cfa1968dec9d.tar.gz
Restore __is_threaded in C++ mode. Some Google stuff needs it apparently.
Reported by: swills Approved by: dim (mentor)
Diffstat (limited to 'include')
-rw-r--r--include/stdio.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h
index b72bfd4..0ae4d8a 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -470,6 +470,9 @@ static __inline int __sputc(int _c, FILE *_p) {
__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 *_p) {
#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))
OpenPOWER on IntegriCloud