diff options
Diffstat (limited to 'mwe/profiling/main.c')
-rw-r--r-- | mwe/profiling/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mwe/profiling/main.c b/mwe/profiling/main.c new file mode 100644 index 0000000..689da52 --- /dev/null +++ b/mwe/profiling/main.c @@ -0,0 +1,7 @@ +#include <lib.h> + +int main() { + int x = recursive(8); + return x == 0; +} + |