[pypy-svn] r45895 - pypy/branch/pypy-more-rtti-inprogress/translator/c/src

arigo at codespeak.net arigo at codespeak.net
Tue Aug 21 16:17:35 CEST 2007


Author: arigo
Date: Tue Aug 21 16:17:34 2007
New Revision: 45895

Modified:
   pypy/branch/pypy-more-rtti-inprogress/translator/c/src/thread_pthread.h
Log:
A missing #include.  I don't know why it didn't hurt before.


Modified: pypy/branch/pypy-more-rtti-inprogress/translator/c/src/thread_pthread.h
==============================================================================
--- pypy/branch/pypy-more-rtti-inprogress/translator/c/src/thread_pthread.h	(original)
+++ pypy/branch/pypy-more-rtti-inprogress/translator/c/src/thread_pthread.h	Tue Aug 21 16:17:34 2007
@@ -2,6 +2,7 @@
 /* Posix threads interface (from CPython) */
 
 #include <pthread.h>
+#include <stdio.h>
 #include <errno.h>
 
 /* The POSIX spec says that implementations supporting the sem_*



More information about the Pypy-commit mailing list