#include <Python.h>   /* <-- you should include this /before/ any standard headers */

PyMODINIT_FUNC
initftw1()       /* <-- this must be called "init" + module_name */
{
	Py_InitModule("ftw1", NULL);
}
