summaryrefslogtreecommitdiff
path: root/example/libfib/fib.h
diff options
context:
space:
mode:
Diffstat (limited to 'example/libfib/fib.h')
-rw-r--r--example/libfib/fib.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/example/libfib/fib.h b/example/libfib/fib.h
new file mode 100644
index 0000000..66615c5
--- /dev/null
+++ b/example/libfib/fib.h
@@ -0,0 +1,9 @@
+#ifndef FIB_H_
+#define FIB_H_
+
+#include <stdint.h>
+
+uint64_t fib(uint64_t);
+
+#endif // FIB_H_
+