* ser-termios.c, ser-go32.c: Remove DEFUN crap, clean up.
[deliverable/binutils-gdb.git] / gdb / serial.h
index 7a5b05b3fca5024de58471de0893f06bb933ff0f..f56041829c65237ff19723e0c2dd0259170ebd13 100644 (file)
@@ -1,4 +1,4 @@
-/* Remote Serial support interface definitions for GDB, the GNU Debugger.
+/* Remote serial support interface definitions for GDB, the GNU Debugger.
    Copyright 1992 Free Software Foundation, Inc.
 
 This file is part of GDB.
@@ -18,45 +18,40 @@ along with this program; if not, write to the Free Software
 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 /* Return a sensible default name for a serial device, something which
-   can be used as an argument to serial_open  */
+   can be used as an argument to serial_open.  */
    
-CONST char *EXFUN(serial_default_name,(void));
+const char *serial_default_name PARAMS ((void));
 
-/* Try to open the serial device "name", return 1 if ok, 0 if not. */
+/* Try to open the serial device "name", return 1 if ok, 0 if not.  */
 
-int EXFUN(serial_open,(CONST char *name));
+int serial_open PARAMS ((const char *name));
 
-/* Turn the port into raw mode */
+/* Turn the port into raw mode */
 
-void EXFUN(serial_raw,(void));
+void serial_raw PARAMS ((void));
 
+/* Turn the port into normal mode.  */
 
-/* Turn the port into normal mode */
+void serial_normal PARAMS ((void));
 
-void EXFUN(serial_normal,(void));
+/* Read one char from the serial device with <TO>-second timeout.
+   Return char, and set ok if ok.  */
 
+int serial_timedreadchar PARAMS ((int to, int *ok));
 
-/* Read one char from the serial device with timeout, return char, and
-   set ok if ok */
+/* Set the baudrate to the decimal value supplied, and return 1, or fail and
+   return 0.  */
 
-int EXFUN(serial_timedreadchar,(int to , int *ok));
+int serial_setbaudrate PARAMS ((int to));
 
+/* Return the next rate in the sequence, or return 0 for failure.  */
 
-/* Set the baudrate to the value supplied, and return 1, or fail and
-   return 0 */
+int serial_nextbaudrate PARAMS ((int rate));
 
-int EXFUN(serial_setbaudrate,(int to));
+/* Write some chars to the device, return 1 if ok, 0 if not.  */
 
-/* Return the next rate in the sequence, or return 0 for a fail*/
+int serial_write PARAMS ((const char *str, int len));
 
-int EXFUN(serial_nextbaudrate,(int rate));
+/* Close the serial port.  */
 
-
-/* Write some chars to the device, return 1 if ok, 0 if not */
-
-int EXFUN(serial_write,( CONST char *str ,  int len));
-
-
-/* Close the serial port */
-
-int EXFUN(serial_close,(void));
+int serial_close PARAMS ((void));
This page took 0.024451 seconds and 4 git commands to generate.