mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-29 23:12:55 +01:00
a111bee74b
gccld llvm-svn: 1842
17 lines
469 B
C
17 lines
469 B
C
//===-- memory.c - String functions for the LLVM libc Library ----*- C -*-===//
|
|
//
|
|
// A lot of this code is ripped gratuitously from glibc and libiberty.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include <stdlib.h>
|
|
|
|
void *malloc(unsigned);
|
|
void free(void *);
|
|
void *memset(void *, int, unsigned);
|
|
|
|
void *calloc(size_t nelem, size_t elsize) {
|
|
void *Result = malloc(nelem*elsize);
|
|
return memset(Result, 0, nelem*elsize);
|
|
}
|