summaryrefslogtreecommitdiff
path: root/lib9/runesmprint.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib9/runesmprint.c')
-rw-r--r--lib9/runesmprint.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib9/runesmprint.c b/lib9/runesmprint.c
new file mode 100644
index 00000000..1afb332e
--- /dev/null
+++ b/lib9/runesmprint.c
@@ -0,0 +1,13 @@
+#include "lib9.h"
+
+Rune*
+runesmprint(char *fmt, ...)
+{
+ va_list args;
+ Rune *p;
+
+ va_start(args, fmt);
+ p = runevsmprint(fmt, args);
+ va_end(args);
+ return p;
+}