numpy  2.0.0
include/numpy/arrayobject.h
Go to the documentation of this file.
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 
00015 #include "ndarrayobject.h"
00016 #include "npy_interrupt.h"
00017 
00018 #ifdef NPY_NO_PREFIX
00019 #include "noprefix.h"
00020 #endif
00021 
00022 #endif