summaryrefslogtreecommitdiff
path: root/example/libfib/fib.c
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-03-07 14:44:57 -0500
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-03-07 14:44:57 -0500
commit317c70674d1d889b98b3b127099ab876f55f1f2d (patch)
treec215359198b4b4e885d670d6346a047d849e5a98 /example/libfib/fib.c
parentca915283cb63068f2fb6bb03ec8faf9c97d009d0 (diff)
feat: Subdir template added
A template for calling Makefiles in subdirectories has been added. This allows a top directory makefile to list subdirectories and call rules like all, clean, install, & uninstall.
Diffstat (limited to 'example/libfib/fib.c')
-rw-r--r--example/libfib/fib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/example/libfib/fib.c b/example/libfib/fib.c
index 707215d..7520c97 100644
--- a/example/libfib/fib.c
+++ b/example/libfib/fib.c
@@ -1,3 +1,8 @@
+//
+// Copyright (c) 2026 Jacob McDonnell
+//
+// SPDX-License-Identifier: BSD-2-Clause
+//
#include "fib.h"
uint64_t fib(const uint64_t n) {