Fix build error on AIX, which won't allow 'redefining' of functions (i.e memcopy)
I talked this over with Nisheeth and the only reason this was put in was to fix compiler warnings. git-svn-id: svn://10.0.0.236/trunk@43692 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
794f5cd2f3
commit
ffeb5dd19d
@ -60,9 +60,6 @@ particular environments. */
|
||||
#define realloc(x, y) PR_Realloc((x), (size_t)(y))
|
||||
#define calloc(x, y) PR_Calloc((x),(y))
|
||||
#define free(x) PR_Free(x)
|
||||
#define memcpy(x, y, z) memcpy((x), (y), (size_t)(z))
|
||||
#define memmove(x, y, z) memmove((x), (y), (size_t)(z))
|
||||
#define memcmp(x, y, z) memcmp((x), (y), (size_t)(z))
|
||||
|
||||
#if PR_BYTES_PER_INT != 4
|
||||
typedef PRInt32 int;
|
||||
|
||||
@ -60,9 +60,6 @@ particular environments. */
|
||||
#define realloc(x, y) PR_Realloc((x), (size_t)(y))
|
||||
#define calloc(x, y) PR_Calloc((x),(y))
|
||||
#define free(x) PR_Free(x)
|
||||
#define memcpy(x, y, z) memcpy((x), (y), (size_t)(z))
|
||||
#define memmove(x, y, z) memmove((x), (y), (size_t)(z))
|
||||
#define memcmp(x, y, z) memcmp((x), (y), (size_t)(z))
|
||||
|
||||
#if PR_BYTES_PER_INT != 4
|
||||
typedef PRInt32 int;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user