From ab8bae74c1915e0cbf4b8a2fd4f53267fddd440c Mon Sep 17 00:00:00 2001 From: Simen Svale Skogsrud Date: Fri, 3 Jun 2011 15:33:12 +0200 Subject: [PATCH] pruned some undefined declarations from the print module --- print.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/print.h b/print.h index b8241f6..c2b76a6 100644 --- a/print.h +++ b/print.h @@ -24,13 +24,9 @@ #ifndef print_h #define print_h -void printNewline(void); void printString(const char *s); void printPgmString(const char *s); void printInteger(long n); -void printHex(unsigned long n); -void printOctal(unsigned long n); -void printBinary(unsigned long n); void printIntegerInBase(unsigned long n, unsigned long base); void printFloat(double n);