numpy 2.0.0
|
00001 00002 /* This expects the following variables to be defined (besides 00003 the usual ones from pyconfig.h 00004 00005 SIZEOF_LONG_DOUBLE -- sizeof(long double) or sizeof(double) if no 00006 long double is present on platform. 00007 CHAR_BIT -- number of bits in a char (usually 8) 00008 (should be in limits.h) 00009 00010 */ 00011 00012 #ifndef Py_ARRAYOBJECT_H 00013 #define Py_ARRAYOBJECT_H 00014 #include "ndarrayobject.h" 00015 #ifdef NPY_NO_PREFIX 00016 #include "noprefix.h" 00017 #endif 00018 00019 #include "npy_interrupt.h" 00020 00021 #endif