summaryrefslogtreecommitdiff
path: root/kern/macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'kern/macros.h')
-rw-r--r--kern/macros.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/kern/macros.h b/kern/macros.h
index 23ad4d22..7435b79c 100644
--- a/kern/macros.h
+++ b/kern/macros.h
@@ -43,16 +43,7 @@
#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__ */