summaryrefslogtreecommitdiff
path: root/emu/port/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'emu/port/print.c')
-rw-r--r--emu/port/print.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/emu/port/print.c b/emu/port/print.c
new file mode 100644
index 00000000..4d166506
--- /dev/null
+++ b/emu/port/print.c
@@ -0,0 +1,23 @@
+#include "dat.h"
+#include "fns.h"
+
+static Lock fmtl;
+
+void
+_fmtlock(void)
+{
+ lock(&fmtl);
+}
+
+void
+_fmtunlock(void)
+{
+ unlock(&fmtl);
+}
+
+int
+_efgfmt(Fmt *f)
+{
+ USED(f);
+ return -1;
+}