We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d220dd commit 8d49009Copy full SHA for 8d49009
32/base14.c
@@ -39,7 +39,9 @@
39
40
//#define DEBUG
41
42
-#define new malloc
+#ifndef new
43
+ #define new malloc
44
+#endif
45
46
LENDAT* encode(const uint8_t* data, const int32_t len) {
47
LENDAT* encd = (LENDAT*)new(sizeof(LENDAT));
64/base14.c
@@ -46,7 +46,9 @@
48
49
50
51
52
53
LENDAT* encode(const uint8_t* data, const int64_t len) {
54
0 commit comments