aboutsummaryrefslogtreecommitdiff
path: root/core/c
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-10-09 12:23:59 +0100
committergingerBill <gingerBill@users.noreply.github.com>2025-10-09 12:23:59 +0100
commit87716da363ac414f203b6029d472d2218d2be684 (patch)
tree9cc517ac348389fc2bf4b040c84aa41b29ba06ec /core/c
parentc73bd6f51d6f0932206d030baab0c3825971263a (diff)
Add package line docs to c and libc
Diffstat (limited to 'core/c')
-rw-r--r--core/c/c.odin1
-rw-r--r--core/c/libc/doc.odin2
2 files changed, 3 insertions, 0 deletions
diff --git a/core/c/c.odin b/core/c/c.odin
index 73727d8d5..907b2f80f 100644
--- a/core/c/c.odin
+++ b/core/c/c.odin
@@ -1,3 +1,4 @@
+// package c just defines the basic types used by C programs
package c
import builtin "base:builtin"
diff --git a/core/c/libc/doc.odin b/core/c/libc/doc.odin
new file mode 100644
index 000000000..883a3dda5
--- /dev/null
+++ b/core/c/libc/doc.odin
@@ -0,0 +1,2 @@
+// package libc declares the commonly used things in "libc" (C standard library)
+package libc