aboutsummaryrefslogtreecommitdiff
path: root/kernel/main.c
diff options
context:
space:
mode:
authorXander <xander@icth.xyz>2023-06-28 22:49:01 +0200
committerXander <xander@icth.xyz>2023-06-28 22:49:01 +0200
commitc5bd05fa070d25ae6700660347bdb59ae84390e6 (patch)
tree437ebe500f0576c7017138288cdfe8a532c4535f /kernel/main.c
parent448ecd41edd95b86930b5ac7288f2ea9311d476c (diff)
downloadats-os-c5bd05fa070d25ae6700660347bdb59ae84390e6.tar.xz
ats-os-c5bd05fa070d25ae6700660347bdb59ae84390e6.zip
Calling c code
Diffstat (limited to 'kernel/main.c')
-rw-r--r--kernel/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/main.c b/kernel/main.c
new file mode 100644
index 0000000..6de1868
--- /dev/null
+++ b/kernel/main.c
@@ -0,0 +1,4 @@
+
+void test(double a) {}
+int main() { test(3.0); }
+