From 3a70e50388b8dbc1817ff4d1407df46003952aff Mon Sep 17 00:00:00 2001 From: Stan Shebs Date: Sun, 31 Jan 1999 21:46:19 +0000 Subject: 1999-01-31 J.T. Conklin * i386-stub.c, m32r-stub.c, m68k-stub.c, sh-stub.c, sparc-stub.c, sparcl-stub, sparclet-stub.c: Change declaration of putDebugChar to include explicit void return type as per documentation. Fix up occasions where stubs erroneously checked return type. --- gdb/sparclet-stub.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'gdb/sparclet-stub.c') diff --git a/gdb/sparclet-stub.c b/gdb/sparclet-stub.c index a462128..ecf670b 100644 --- a/gdb/sparclet-stub.c +++ b/gdb/sparclet-stub.c @@ -95,8 +95,8 @@ * external low-level support routines */ -extern putDebugChar(); /* write a single character */ -extern getDebugChar(); /* read and return a single char */ +extern void putDebugChar(); /* write a single character */ +extern int getDebugChar(); /* read and return a single char */ /************************************************************************/ /* BUFMAX defines the maximum number of characters in inbound/outbound buffers*/ @@ -534,8 +534,7 @@ putpacket(buffer) while (ch = buffer[count]) { - if (! putDebugChar(ch)) - return; + putDebugChar(ch); checksum += ch; count += 1; } -- cgit v1.1