diff options
| author | Daniel Friesel <derf@derf.homelinux.org> | 2010-02-22 22:32:55 +0100 | 
|---|---|---|
| committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-02-22 22:32:55 +0100 | 
| commit | 4fa8477667627f23a2e925071029114383b30c1b (patch) | |
| tree | 9da01f31558d6cf3fe9168d9563da4369f16f634 /src | |
| parent | 6ac188a996152b8a7836a9192c81af1b197d4c49 (diff) | |
md5.c: Always include string.h to fix memcpy warnings
Diffstat (limited to 'src')
| -rw-r--r-- | src/md5.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -39,6 +39,7 @@   */  #include "md5.h" +#include <string.h>  #ifdef TEST  /* @@ -46,7 +47,6 @@   * The test program should print out the same values as given in section   * A.5 of RFC 1321, reproduced below.   */ -#include <string.h>  main()  {  	static const char *const test[7] = { | 
