mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-03 00:47:07 +00:00
Remove support for memset
llvm-svn: 5599
This commit is contained in:
parent
adb111cdfe
commit
876f0342b4
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user