Imported Upstream version 1.1.1
[platform/upstream/iotivity.git] / resource / csdk / connectivity / lib / libcoap-4.1.1 / include / coap / mem.h
1 /* mem.h -- CoAP memory handling
2  *          Currently, this is just a dummy for malloc/free
3  *
4  * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
5  *
6  * This file is part of the CoAP library libcoap. Please see
7  * README for terms of use.
8  */
9
10 #ifndef _COAP_MEM_H_
11 #define _COAP_MEM_H_
12
13 #include <stdlib.h>
14
15 #define coap_malloc(size) malloc(size)
16 #define coap_free(size) free(size)
17
18 #endif /* _COAP_MEM_H_ */