[Python-checkins] python/dist/src/Python thread.c,2.44,2.45
mhammond@users.sourceforge.net
mhammond@users.sourceforge.net
Thu, 18 Jul 2002 23:55:43 -0700
Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv15103/Python
Modified Files:
thread.c
Log Message:
Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT.
Index: thread.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread.c,v
retrieving revision 2.44
retrieving revision 2.45
diff -C2 -d -r2.44 -r2.45
*** thread.c 25 Jun 2002 19:26:34 -0000 2.44
--- thread.c 19 Jul 2002 06:55:41 -0000 2.45
***************
*** 8,16 ****
#include "Python.h"
- /* pyconfig.h may or may not define DL_IMPORT */
- #ifndef DL_IMPORT /* declarations for DLL import/export */
- #define DL_IMPORT(RTYPE) RTYPE
- #endif
-
#ifndef DONT_HAVE_STDIO_H
#include <stdio.h>
--- 8,11 ----