Initial commit

This commit is contained in:
stubbfel
2018-01-26 02:04:31 +01:00
commit 2409815a82
7 changed files with 451 additions and 0 deletions

38
src/unity_config.h Normal file
View File

@@ -0,0 +1,38 @@
#ifndef UNITY_CONFIG_H
#define UNITY_CONFIG_H
#include <linux/kernel.h>
#ifndef UNITY_EXCLUDE_SETJMP_H
#define UNITY_EXCLUDE_SETJMP_H
#endif
#ifndef UNITY_EXCLUDE_MATH_H
#define UNITY_EXCLUDE_MATH_H
#endif
#ifndef UNITY_EXCLUDE_LIMITS_H
#define UNITY_EXCLUDE_LIMITS_H
#endif
#ifndef UNITY_EXCLUDE_STDINT_H
#define UNITY_EXCLUDE_STDINT_H
#endif
#ifndef UNITY_EXCLUDE_FLOAT
#define UNITY_EXCLUDE_FLOAT
#endif
#ifndef UNITY_OUTPUT_CHAR
#define UNITY_OUTPUT_CHAR(a) putchark(a)
#endif
#ifndef UNITY_OUTPUT_CHAR_HEADER_DECLARATION
#define UNITY_OUTPUT_CHAR_HEADER_DECLARATION putchark(char a)
#endif
#ifndef UNITY_INT_WIDTH
#define UNITY_INT_WIDTH (32)
#endif
#endif // UNITY_CONFIG_H