Skip to content
Snippets Groups Projects
Commit 1baabdbb authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

MEMCPY macro changed

Rev: src/port.h:1.3
parent cb859e7b
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ char *MEMMOVE(char *b,const char *a,int s); ...@@ -77,7 +77,7 @@ char *MEMMOVE(char *b,const char *a,int s);
#ifndef HAVE_MEMCMP #ifndef HAVE_MEMCMP
int MEMCMP(const char *b,const char *a,int s); int MEMCMP(const char *b,const char *a,int s);
#else #else
# define MEMCMP(X,Y,Z) memcmp((char*)(X),(char*)(Y),(char*)(Z)) # define MEMCMP(X,Y,Z) memcmp((char*)(X),(char*)(Y),(Z))
#endif #endif
#ifndef HAVE_MEMCHR #ifndef HAVE_MEMCHR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment