diff options
| author | Ralf Gommers <ralf.gommers@gmail.com> | 2022-11-27 14:51:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-27 14:51:32 +0100 |
| commit | 3b7672ebd16982b661b8fbcabac80158662a8784 (patch) | |
| tree | afc7f0eaad71d8f54f4f03a44da407fb222e997f /numpy/linalg/lapack_lite/f2c.c | |
| parent | d4b2d4f80060285ac085ea874aceaf9fa1bfb757 (diff) | |
| parent | 4002a7d421ff10780c28a3643683af7a9754f87f (diff) | |
| download | numpy-3b7672ebd16982b661b8fbcabac80158662a8784.tar.gz | |
Merge pull request #22663 from rgommers/build-with-meson
BLD: enable building NumPy with Meson
[ci skip]
Diffstat (limited to 'numpy/linalg/lapack_lite/f2c.c')
| -rw-r--r-- | numpy/linalg/lapack_lite/f2c.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/linalg/lapack_lite/f2c.c b/numpy/linalg/lapack_lite/f2c.c index 869fce5d3..ddaa8d172 100644 --- a/numpy/linalg/lapack_lite/f2c.c +++ b/numpy/linalg/lapack_lite/f2c.c @@ -7,10 +7,14 @@ it is available, and shipping a static library isn't portable. */ +#define PY_SSIZE_T_CLEAN +#include <Python.h> + #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> + #include "f2c.h" |
