ANSI-fication
diff --git a/Modules/termios.c b/Modules/termios.c
index aab6b8a..80d41de 100644
--- a/Modules/termios.c
+++ b/Modules/termios.c
@@ -46,9 +46,7 @@
 in the TERMIOS module.";
 
 static PyObject *
-termios_tcgetattr(self, args)
-	PyObject *self;
-	PyObject *args;
+termios_tcgetattr(PyObject *self, PyObject *args)
 {
 	int fd;
 	struct termios mode;
@@ -126,9 +124,7 @@
 queued output and discarding all queued input. ";
 
 static PyObject *
-termios_tcsetattr(self, args)
-	PyObject *self;
-	PyObject *args;
+termios_tcsetattr(PyObject *self, PyObject *args)
 {
 	int fd, when;
 	struct termios mode;
@@ -195,9 +191,7 @@
 has a system dependent meaning. ";
 
 static PyObject *
-termios_tcsendbreak(self, args)
-	PyObject *self;
-	PyObject *args;
+termios_tcsendbreak(PyObject *self, PyObject *args)
 {
 	int fd, duration;
 
@@ -219,9 +213,7 @@
 Wait until all output written to file descriptor fd has been transmitted. ";
 
 static PyObject *
-termios_tcdrain(self, args)
-	PyObject *self;
-	PyObject *args;
+termios_tcdrain(PyObject *self, PyObject *args)
 {
 	int fd;
 
@@ -246,9 +238,7 @@
 both queues. ";
 
 static PyObject *
-termios_tcflush(self, args)
-	PyObject *self;
-	PyObject *args;
+termios_tcflush(PyObject *self, PyObject *args)
 {
 	int fd, queue;
 
@@ -273,9 +263,7 @@
 or TERMIOS.TCION to restart input. ";
 
 static PyObject *
-termios_tcflow(self, args)
-	PyObject *self;
-	PyObject *args;
+termios_tcflow(PyObject *self, PyObject *args)
 {
 	int fd, action;