Remove support for memset

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5599 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-02-18 20:42:15 +00:00
parent 6d3a877743
commit 8fc625836e

View File

@ -53,7 +53,7 @@ int strcmp (const char *p1, const char *p2) {
}
// http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/generic/?cvsroot=glibc
#if 0
typedef unsigned int op_t;
#define OPSIZ 4
@ -119,6 +119,7 @@ void *memset (void *dstpp, int c, size_t len) {
return dstpp;
}
#endif
void *memcpy(void *dstpp, const void *srcpp, size_t len) {
char *dstp = (char*)dstpp;