Use SDL_ prefixed versions of C library functions.
FIXME: Change #include <stdlib.h> to #include "SDL_stdlib.h" Change #include <string.h> to #include "SDL_string.h" Make sure nothing else broke because of this... --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401340
This commit is contained in:
parent
00f6d8e5e3
commit
5d53175e4d
212 changed files with 1840 additions and 1884 deletions
|
@ -817,10 +817,10 @@ static Uint32 GetBlitFeatures( void )
|
|||
static Uint32 features = 0xffffffff;
|
||||
if (features == 0xffffffff) {
|
||||
/* Provide an override for testing .. */
|
||||
char *override = getenv("SDL_ALTIVEC_BLIT_FEATURES");
|
||||
char *override = SDL_getenv("SDL_ALTIVEC_BLIT_FEATURES");
|
||||
if (override) {
|
||||
features = 0;
|
||||
sscanf(override, "%u", &features);
|
||||
SDL_sscanf(override, "%u", &features);
|
||||
} else {
|
||||
features = ( 0
|
||||
/* Feature 1 is has-MMX */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue