276da39af9
Approved by: roberto, delphij Security: VuXML: 0d0f3050-1f69-11e5-9ba9-d050996490d0 Security: http://bugs.ntp.org/show_bug.cgi?id=2853 Security: https://www.kb.cert.org/vuls/id/668167 Security: http://support.ntp.org/bin/view/Main/SecurityNotice#June_2015_NTP_Security_Vulnerabi
22 lines
756 B
C
22 lines
756 B
C
//- Copyright (c) 2010 James Grenning and Contributed to Unity Project
|
|
/* ==========================================
|
|
Unity Project - A Test Framework for C
|
|
Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
|
[Released under MIT License. Please refer to license.txt for details]
|
|
========================================== */
|
|
|
|
#ifndef UNITY_FIXTURE_MALLOC_OVERRIDES_H_
|
|
#define UNITY_FIXTURE_MALLOC_OVERRIDES_H_
|
|
|
|
#define malloc unity_malloc
|
|
#define calloc unity_calloc
|
|
#define realloc unity_realloc
|
|
#define free unity_free
|
|
|
|
void* unity_malloc(size_t size);
|
|
void* unity_calloc(size_t num, size_t size);
|
|
void* unity_realloc(void * oldMem, size_t size);
|
|
void unity_free(void * mem);
|
|
|
|
#endif /* UNITY_FIXTURE_MALLOC_OVERRIDES_H_ */
|