diff options
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 + |