Update Unity to release 2.4.1

This commit is contained in:
Max Bruckner
2017-04-27 02:54:33 +02:00
38 changed files with 4251 additions and 1278 deletions

View File

@ -26,6 +26,7 @@
* For example, when using FreeRTOS UNITY_FIXTURE_MALLOC becomes pvPortMalloc()
* and UNITY_FIXTURE_FREE becomes vPortFree(). */
#if !defined(UNITY_FIXTURE_MALLOC) || !defined(UNITY_FIXTURE_FREE)
#include <stdlib.h>
#define UNITY_FIXTURE_MALLOC(size) malloc(size)
#define UNITY_FIXTURE_FREE(ptr) free(ptr)
#else