MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

gnu_source np attribute for limits

+5
+1
maidfile.toml
··· 1 1 [env] 2 2 CC = "ccache clang" 3 + CXX = "ccache clang++" 3 4 4 5 [tasks.build] 5 6 path = "build"
+4
src/silver/limits.c
··· 1 + #if !defined(_WIN32) && !defined(__APPLE__) 2 + #define _GNU_SOURCE 3 + #endif 4 + 1 5 #include "silver/vm.h" 2 6 3 7 #include <stddef.h>