diff options
author | José Fonseca <jfonseca@vmware.com> | 2014-02-28 11:44:38 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2014-02-28 11:44:38 +0000 |
commit | b4051e3c5fe78064141a9b8a73752af1a3f349ba (patch) | |
tree | 721afe25190ceee5c7ee340ba5369b97d99bfd97 /thirdparty | |
parent | 1a95d61544e9e3f518beaeafbb4a700a6800c6a2 (diff) |
md5: Fix include for memcpy.
It should be string.h. This fixes warnings about undeclared memcpy
when building for Android.
Diffstat (limited to 'thirdparty')
-rw-r--r-- | thirdparty/md5/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/md5/md5.c b/thirdparty/md5/md5.c index db3b61a5..6e60a9c5 100644 --- a/thirdparty/md5/md5.c +++ b/thirdparty/md5/md5.c @@ -19,7 +19,7 @@ prototypes) to maintain the tradition that Netfone will compile with Sun's original "cc". */ -#include <memory.h> /* for memcpy() */ +#include <string.h> /* for memcpy() */ #include "md5.h" #ifndef HIGHFIRST |