summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-02-16 12:57:46 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-02-16 12:57:46 +0100
commit7d5c3467a3b809c0fe2ee69ad765c1cd452cb535 (patch)
tree48604ed5084b4e751be76d83817b669751516b13
parent89effd74d93b37025053c66bbbbd1deaea171321 (diff)
chore: introduce a Nectar Core Library 'NCL' function.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--include/GenericsLibrary/io.nhh4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/GenericsLibrary/io.nhh b/include/GenericsLibrary/io.nhh
index d99ae83..dba40b1 100644
--- a/include/GenericsLibrary/io.nhh
+++ b/include/GenericsLibrary/io.nhh
@@ -6,11 +6,11 @@
#ifndef NECTAR_GL_IO_NHH
#define NECTAR_GL_IO_NHH
-import printf;
+import ncl_printf;
const writefn(let fmt, let args)
{
- printf(fmt, {args});
+ ncl_printf(fmt, {args});
}
#endif