Fixes to be LP64 correct

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2950 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-07-18 00:15:29 +00:00
parent 6183b92b2c
commit d6c68c417b
2 changed files with 6 additions and 6 deletions

View File

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

View File

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