From: Alan Cox Date: Sat, 18 Jun 2016 21:51:16 +0000 (+0100) Subject: asctime: Fix compile failure X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=11366cd6c57235a95d6e0b85b11eed44e446aa0b;p=FUZIX.git asctime: Fix compile failure --- diff --git a/Library/libs/asctime.c b/Library/libs/asctime.c index 1f6caa83..d8abde77 100644 --- a/Library/libs/asctime.c +++ b/Library/libs/asctime.c @@ -5,8 +5,6 @@ * Internal ascii conversion routine, avoid use of printf, it's a bit big! */ -static void hit __P((char *, int)); - static void hit(char *buf, int val) { *buf = '0' + val % 10;