summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-01-11 20:41:17 +0100
committerRichard Braun <rbraun@sceen.net>2018-01-12 00:07:39 +0100
commitc43b8068b6e613da3a24a1b5e6b765e5eebbbd6c (patch)
tree904f231f8477c2672c2cb3d2b0077fa508571685
parenta80b56b8b39f5c23b34f88fda0c936c61372b4ba (diff)
kern/macros: remove left-over debugging code
-rw-r--r--kern/macros.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/kern/macros.h b/kern/macros.h
index 23ad4d2..0bd1beb 100644
--- a/kern/macros.h
+++ b/kern/macros.h
@@ -43,16 +43,6 @@
#define DECL_CONST(x, s) x
#else /* __ASSEMBLER__ */
#define __DECL_CONST(x, s) x##s
-void cga_putc(char c);
-
-static inline void
-moo_print(const char *s)
-{
- while (*s != '\0') {
- cga_putc(*s);
- s++;
- }
-}
#define DECL_CONST(x, s) __DECL_CONST(x, s)
#endif /* __ASSEMBLER__ */