From f892e76346e5270b6786e96c1b6bd0d8b7a2a377 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Fri, 23 Jan 2004 22:10:48 +0000 Subject: [PATCH] =?UTF-8?q?2004-01-23=20=20G=EF=BF=BDbor=20L=EF=BF=BDki=20?= =?UTF-8?q?=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * m68k/leds.c: remove led_putnum(), zylons() forward function declarations. * m68k/leds.h: add zylons() forward function declaration. --- libgloss/ChangeLog | 6 ++++++ libgloss/m68k/leds.c | 3 --- libgloss/m68k/leds.h | 1 + 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 97096d702..a0cd9a3bd 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,9 @@ +2004-01-23 Gábor Lóki + + * m68k/leds.c: remove led_putnum(), zylons() forward + function declarations. + * m68k/leds.h: add zylons() forward function declaration. + 2004-01-06 Alexandre Oliva 2003-12-02 Richard Sandiford diff --git a/libgloss/m68k/leds.c b/libgloss/m68k/leds.c index 125ae8b50..b9112376d 100644 --- a/libgloss/m68k/leds.c +++ b/libgloss/m68k/leds.c @@ -15,9 +15,6 @@ */ #include "leds.h" -void zylons(); -void led_putnum(); - /* * led_putnum -- print a hex number on the LED. the value of num must be a char with * the ascii value. ie... number 0 is '0', a is 'a', ' ' (null) clears diff --git a/libgloss/m68k/leds.h b/libgloss/m68k/leds.h index 919c38143..c3fd6a3c6 100644 --- a/libgloss/m68k/leds.h +++ b/libgloss/m68k/leds.h @@ -32,5 +32,6 @@ #define FUDGE(x) ((x >= 0xa && x <= 0xf) ? (x + 'a') & 0x7f : (x + '0') & 0x7f) extern void led_putnum( char ); +void zylons(); #endif /* __LEDS_H__ */