Fixes to be LP64 correct

llvm-svn: 2950
This commit is contained in:
Chris Lattner 2002-07-18 00:15:29 +00:00
parent d9f4ac6680
commit 4f6a098c84
2 changed files with 6 additions and 6 deletions

View File

@ -6,9 +6,9 @@
#include <stdlib.h>
void *malloc(unsigned);
void *malloc(size_t);
void free(void *);
void *memset(void *, int, unsigned);
void *memset(void *, int, size_t);
void *calloc(size_t nelem, size_t elsize) {
void *Result = malloc(nelem*elsize);

View File

@ -5,17 +5,17 @@
//===----------------------------------------------------------------------===//
#include <stdlib.h>
void *malloc(unsigned);
void *malloc(size_t);
void free(void *);
unsigned strlen(const char *Str) {
int Count = 0;
size_t strlen(const char *Str) {
size_t Count = 0;
while (*Str) { ++Count; ++Str; }
return Count;
}
char *strdup(const char *str) {
int Len = strlen(str);
long Len = strlen(str);
char *Result = (char*)malloc((Len+1)*sizeof(char));
memcpy(Result, str, Len+1);
return Result;