change in staticforward -- added statichere

This commit is contained in:
Guido van Rossum 1995-02-21 21:06:10 +00:00
parent 4f508cc806
commit 57836fe998
1 changed files with 7 additions and 1 deletions

View File

@ -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 */
/*