2015-06-02 05:06:40 +00:00
|
|
|
/*
|
2015-06-15 06:51:06 +00:00
|
|
|
* Wrappers for functions called by binary espressif libraries
|
2015-06-02 05:06:40 +00:00
|
|
|
*
|
|
|
|
* Part of esp-open-rtos
|
2015-06-05 01:46:25 +00:00
|
|
|
* Copyright (C) 2015 Superhouse Automation Pty Ltd
|
2015-06-02 05:06:40 +00:00
|
|
|
* BSD Licensed as described in the file LICENSE
|
|
|
|
*/
|
2015-05-06 08:44:20 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "FreeRTOS.h"
|
|
|
|
|
|
|
|
void *zalloc(size_t nbytes) {
|
|
|
|
return calloc(1, nbytes);
|
|
|
|
}
|