libcoap  4.1.1
 All Data Structures Files Functions Variables Typedefs Macros Groups Pages
mem.h
Go to the documentation of this file.
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_ */