Browse Source

Fix external build linking

A misplaced external guard (likely introduced in #217) caused a few legacy symbols (hsStrcpy, etc) to be excluded from the CoreLib.
Adam Johnson 12 years ago
parent
commit
6d4726c766
  1. 4
      Sources/Plasma/CoreLib/HeadSpin.cpp

4
Sources/Plasma/CoreLib/HeadSpin.cpp

@ -212,6 +212,8 @@ void hsStatusMessageF(const char * fmt, ...)
va_end(args); va_end(args);
} }
#endif
char * hsFormatStr(const char * fmt, ...) char * hsFormatStr(const char * fmt, ...)
{ {
va_list args; va_list args;
@ -590,5 +592,3 @@ char** DisplaySystemVersion()
return nil; return nil;
#endif #endif
} }
#endif // not PLASMA_EXTERNAL_RELEASE

Loading…
Cancel
Save