9a356fcc9102e4212027155ebc0d4613f558249d
[eightysix] / kern / src / con.h
1 #ifndef CON_H_
2 #define CON_H_
3
4 struct console {
5         void (*clear)(void*);
6         void (*putc)(void*, char c);
7
8         void *data;
9 };
10
11 #endif  /* CON_H_ */