Browse Source

Add package line docs to c and libc

gingerBill 5 days ago
parent
commit
87716da363
2 changed files with 3 additions and 0 deletions
  1. 1 0
      core/c/c.odin
  2. 2 0
      core/c/libc/doc.odin

+ 1 - 0
core/c/c.odin

@@ -1,3 +1,4 @@
+// package c just defines the basic types used by C programs
 package c
 package c
 
 
 import builtin "base:builtin"
 import builtin "base:builtin"

+ 2 - 0
core/c/libc/doc.odin

@@ -0,0 +1,2 @@
+// package libc declares the commonly used things in "libc" (C standard library)
+package libc