From 77317ca7dc4d4267c2c23b3825ba95c3978c9cdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Thu, 5 Oct 2000 17:25:45 +0000 Subject: [PATCH] Added Py_FPROTO macro which was available in Python 1.5.x and below. This should not be used for new code, but will probably make porting old extensions to 2.0 a lot easier. Also see Bug #116011. --- Include/pyport.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Include/pyport.h b/Include/pyport.h index f35d8e66152..4bc6016175a 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -39,6 +39,9 @@ Used in: LONG_LONG #else #define Py_PROTO(x) () #endif +#ifndef Py_FPROTO +#define Py_FPROTO(x) Py_PROTO(x) +#endif /* typedefs for some C9X-defined synonyms for integral types. *