We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9260c5f commit 475b4e5Copy full SHA for 475b4e5
include/mpack/mpack-config.h
@@ -79,26 +79,18 @@
79
/**
80
* @def MPACK_STDLIB
81
*
82
- * Enables the use of C stdlib. This allows the library to use malloc
+ * Enables the use of C stdlib. This allows the library
83
* for debugging and in allocation helpers.
84
*/
85
-#ifndef MPACK_STDLIB
86
-#ifdef PARAM_LIST_DYNAMIC
87
#define MPACK_STDLIB 1
88
-#else
89
-#define MPACK_STDLIB 0
90
-#endif
91
92
93
94
* @def MPACK_STDIO
95
96
* Enables the use of C stdio. This adds helpers for easily
97
* reading/writing C files and makes debugging easier.
98
99
-#ifndef MPACK_STDIO
100
#define MPACK_STDIO 1
101
102
103
104
* @}
0 commit comments