Remove support for memset

llvm-svn: 5599
This commit is contained in:
Chris Lattner 2003-02-18 20:42:15 +00:00
parent adb111cdfe
commit 876f0342b4

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;