summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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