summaryrefslogtreecommitdiff
path: root/emu/port/print.c
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2009-03-25 15:55:14 +0000
committerCharles.Forsyth <devnull@localhost>2009-03-25 15:55:14 +0000
commitdfd1934d5e1ddbeb326f77fc0e52307c801a1a3e (patch)
treef1e8b23278caae95e01d88b00421d6c3642357ef /emu/port/print.c
parent78dfdcbd59dc8f36975e7695933e3f753957474c (diff)
x20090325-1554
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;
+}