From 051ab123b465685e714668099c0a6dd86de5673b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 27 Feb 1995 10:17:52 +0000 Subject: make the type a parameter of the DL_IMPORT macro, for Borland C --- Include/floatobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Include/floatobject.h') diff --git a/Include/floatobject.h b/Include/floatobject.h index 2feb0bcea5..ba23f77a4b 100644 --- a/Include/floatobject.h +++ b/Include/floatobject.h @@ -39,7 +39,7 @@ typedef struct { double ob_fval; } PyFloatObject; -extern DL_IMPORT PyTypeObject PyFloat_Type; +extern DL_IMPORT(PyTypeObject) PyFloat_Type; #define PyFloat_Check(op) ((op)->ob_type == &PyFloat_Type) -- cgit v1.2.1