foo
[eightysix] / kern / src / con.h
diff --git a/kern/src/con.h b/kern/src/con.h
new file mode 100644 (file)
index 0000000..9a356fc
--- /dev/null
@@ -0,0 +1,11 @@
+#ifndef CON_H_
+#define CON_H_
+
+struct console {
+       void (*clear)(void*);
+       void (*putc)(void*, char c);
+
+       void *data;
+};
+
+#endif /* CON_H_ */