whoops. missed one in an auto-generated file. another extern "C" {} for C++ compiler compatibility

This commit is contained in:
Anthony Baxter 2006-04-13 04:49:25 +00:00
parent 0cfa58c43a
commit 1ad9ec276e
1 changed files with 10 additions and 0 deletions

View File

@ -17,6 +17,10 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#include "Python.h"
#ifdef __cplusplus
extern "C" {
#endif
/* -- ADDMODULE MARKER 1 -- */
@ -50,3 +54,9 @@ struct _inittab _PyImport_Inittab[] = {
/* Sentinel */
{0, 0}
};
#ifdef __cplusplus
}
#endif