Mercurial > sdl-ios-xcode
diff src/video/x11/SDL_x11video.h @ 1336:3692456e7b0f
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...
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 07 Feb 2006 06:59:48 +0000 |
parents | d12a63a8d95a |
children | 19418e4422cb |
line wrap: on
line diff
--- a/src/video/x11/SDL_x11video.h Mon Feb 06 17:28:04 2006 +0000 +++ b/src/video/x11/SDL_x11video.h Tue Feb 07 06:59:48 2006 +0000 @@ -185,7 +185,7 @@ #define SDL_iconcolors (this->hidden->iconcolors) /* Some versions of XFree86 have bugs - detect if this is one of them */ #define BUGGY_XFREE86(condition, buggy_version) \ -((strcmp(ServerVendor(SDL_Display), "The XFree86 Project, Inc") == 0) && \ +((SDL_strcmp(ServerVendor(SDL_Display), "The XFree86 Project, Inc") == 0) && \ (VendorRelease(SDL_Display) condition buggy_version)) #endif /* _SDL_x11video_h */