diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-04-03 14:50:05 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-03 19:15:09 +0000 |
commit | 7e7c649237b9d537226e3026aa9b5831862eee5b (patch) | |
tree | a905847ec19b45c45e54e50ae527d2acbefa7f97 /core/fxcrt/fx_system.h | |
parent | 044a70da2aeaa5f4c73abfb75e81f79edd9014b8 (diff) | |
download | pdfium-7e7c649237b9d537226e3026aa9b5831862eee5b.tar.xz |
Drop FXSYS_ from string methods
This Cl drops the FXSYS_ from string methods which are the same on
all platforms.
Bug: pdfium:694
Change-Id: I1698aafd84f40474997549ae91ce35603377e303
Reviewed-on: https://pdfium-review.googlesource.com/3597
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcrt/fx_system.h')
-rw-r--r-- | core/fxcrt/fx_system.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/core/fxcrt/fx_system.h b/core/fxcrt/fx_system.h index 38191539dc..d9a352c1d6 100644 --- a/core/fxcrt/fx_system.h +++ b/core/fxcrt/fx_system.h @@ -121,11 +121,7 @@ void FXSYS_vsnprintf(char* str, size_t size, const char* fmt, va_list ap); #define FXSYS_sprintf DO_NOT_USE_SPRINTF_DIE_DIE_DIE #define FXSYS_vsprintf DO_NOT_USE_VSPRINTF_DIE_DIE_DIE -#define FXSYS_strncmp strncmp -#define FXSYS_strcmp strcmp -#define FXSYS_strcpy strcpy -#define FXSYS_strncpy strncpy -#define FXSYS_strstr strstr + #define FXSYS_FILE FILE #define FXSYS_fopen fopen #define FXSYS_fclose fclose |