2006-03-15 02:15:57 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2002-2006, Haiku Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2002-10-23 19:51:19 +04:00
|
|
|
#ifndef _MALLOC_H
|
|
|
|
#define _MALLOC_H
|
|
|
|
|
|
|
|
|
2006-03-15 02:15:57 +03:00
|
|
|
#include <unistd.h>
|
2002-10-23 19:51:19 +04:00
|
|
|
|
|
|
|
|
|
|
|
#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 */
|