diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-11 15:07:22 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-11 15:07:22 +0200 |
commit | faccce92caa85e1466e30a1284119b1a8a666fa3 (patch) | |
tree | 03b5fe155cfcb112e1b44f1bf56fe1b506a8b41c /mwe/profiling/lib/lib.h | |
parent | 83568a442d494078a662276969a4ed9b789dc0c7 (diff) |
add profiling pocpoc/profiling
Diffstat (limited to 'mwe/profiling/lib/lib.h')
-rw-r--r-- | mwe/profiling/lib/lib.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mwe/profiling/lib/lib.h b/mwe/profiling/lib/lib.h new file mode 100644 index 0000000..fc413ff --- /dev/null +++ b/mwe/profiling/lib/lib.h @@ -0,0 +1,12 @@ +#pragma once + +#ifdef __cplusplus +extern "C" { +#endif + +int recursive(int rem); + +#ifdef __cplusplus +} +#endif + |