Skip to content

Commit 01970d2

Browse files
committed
Added alloca support for cproc
1 parent 24c987a commit 01970d2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

prune.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
#define print(str) write(0, (str), strlen((str)))
99
#define input(var, limit) read(1, (var), (limit))
1010

11+
// Support cproc alloca
12+
#ifndef alloca
13+
#define alloca __builtin_alloca
14+
#endif
15+
1116
/*
1217
removes all entries in filename which are older than now.
1318
*/

0 commit comments

Comments
 (0)