From: Guido van Rossum Date: Tue, 21 Feb 1995 21:06:10 +0000 (+0000) Subject: change in staticforward -- added statichere X-Git-Tag: v1.2b4~173 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=57836fe9987ae09a9b8509491b75ba3ae82546f6;p=thirdparty%2FPython%2Fcpython.git change in staticforward -- added statichere --- diff --git a/Include/object.h b/Include/object.h index 98a6b75f16cb..9c9b6893fdc3 100644 --- a/Include/object.h +++ b/Include/object.h @@ -376,9 +376,15 @@ object, so I can't just put extern in all cases. :-( ) #ifdef BAD_STATIC_FORWARD #define staticforward extern +#ifdef __SC__ +#define statichere #else +#define statichere static +#endif /* __SC__ */ +#else /* !BAD_STATIC_FORWARD */ #define staticforward static -#endif /* BAD_STATIC_FORWARD */ +#define statichere static +#endif /* !BAD_STATIC_FORWARD */ /*