579c74ceb5
* Cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16800 a95241bf-73f2-0310-859d-f6bbb57e9c96
28 lines
545 B
C
28 lines
545 B
C
/*
|
|
* Copyright 2002-2006, Haiku Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _MALLOC_H
|
|
#define _MALLOC_H
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void *malloc(size_t numBytes);
|
|
extern void *realloc(void *oldPointer, size_t newSize);
|
|
extern void *calloc(size_t numElements, size_t size);
|
|
extern void free(void *pointer);
|
|
extern void *memalign(size_t alignment, size_t numBytes);
|
|
extern void *valloc(size_t numBytes);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _MALLOC_H */
|