mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
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:
parent
6d3a877743
commit
8fc625836e
@ -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…
x
Reference in New Issue
Block a user