1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

Include <string.h> and <stdlib.h> unconditionally.

(memcpy): Remove definition.
This commit is contained in:
Jim Meyering
2003-06-06 19:32:21 +00:00
parent 9f818bb79f
commit 510f263a2c

View File

@@ -26,14 +26,8 @@
#include <sys/types.h>
#if STDC_HEADERS || defined _LIBC
# include <stdlib.h>
# include <string.h>
#else
# ifndef HAVE_MEMCPY
# define memcpy(d, s, n) bcopy ((s), (d), (n))
# endif
#endif
#include <stdlib.h>
#include <string.h>
#include "md5.h"
#include "unlocked-io.h"