diff options
author | reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2009-01-06 15:03:30 +0000 |
---|---|---|
committer | reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2009-01-06 15:03:30 +0000 |
commit | 6e073b9e2b70d6bbf8a06050fff1364827204f08 (patch) | |
tree | 9443f1efab27a0d5172b3edb44daac75721c9f84 /include/core | |
parent | bd700c391dd45acd8ea1a40321789c9d92a14bb8 (diff) |
remove defines for strcasecmp (issue #5)
support setMatrix in pictures
git-svn-id: http://skia.googlecode.com/svn/trunk@53 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkPostConfig.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/core/SkPostConfig.h b/include/core/SkPostConfig.h index e32d6a10b2..8e6ce497bf 100644 --- a/include/core/SkPostConfig.h +++ b/include/core/SkPostConfig.h @@ -98,14 +98,6 @@ #ifndef SK_DEBUGBREAK #define SK_DEBUGBREAK(cond) do { if (!(cond)) DebugBreak(); } while (false) #endif - - #ifdef SK_BUILD_FOR_WIN32 - #define strcasecmp(a, b) stricmp(a, b) - #define strncasecmp(a, b, c) strnicmp(a, b, c) - #elif defined(SK_BUILD_FOR_WINCE) - #define strcasecmp(a, b) _stricmp(a, b) - #define strncasecmp(a, b, c) _strnicmp(a, b, c) - #endif #elif defined(SK_BUILD_FOR_MAC) #ifndef SK_DEBUGBREAK #define SK_DEBUGBREAK(cond) do { if (!(cond)) SK_CRASH(); } while (false) |