1999-01-31 J.T. Conklin <jtc@redbacknetworks.com>
[deliverable/binutils-gdb.git] / gdb / sh-stub.c
index beb87085c7e46c380ec9f49d449d56acd921bf08..a036cff60628d24ab0949a4d9d2b2d33b7e1530e 100644 (file)
@@ -202,8 +202,7 @@ static int computeSignal (int exceptionVector);
 static void handle_exception (int exceptionVector);
 void init_serial();
 
-
-int putDebugChar (char);
+void putDebugChar (char);
 char getDebugChar (void);
 
 /* These are in the file but in asm statements so the compiler can't see them */
@@ -1457,8 +1456,6 @@ exceptions()
 #define BPS                    32      /* 9600 for 10 Mhz */
 #endif
 
-char getDebugChar (void);
-int putDebugChar (char);
 void handleError (char theSSR);
 
 void
@@ -1531,7 +1528,7 @@ putDebugCharReady()
   return (SSR1 & SCI_TDRE);
 }
 
-int 
+void
 putDebugChar (char ch)
 {
   while (!putDebugCharReady())
@@ -1542,7 +1539,6 @@ putDebugChar (char ch)
    */
   TDR1 = ch;
   SSR1 &= ~SCI_TDRE;
-  return 1;
 }
 
 void 
This page took 0.024313 seconds and 4 git commands to generate.