X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fdiscard.c;h=21fc88f9be34ebe702f9dac83cd1d13ac45d79a6;hp=dbc865c49441c01a3484d7e0028dac7b71f1dead;hb=a485ed478abbd599d8c9aab48934e7a26733ecb1;hpb=f480c03187724e54e5391ee61b810827da319a6c diff --git a/sbr/discard.c b/sbr/discard.c index dbc865c..21fc88f 100644 --- a/sbr/discard.c +++ b/sbr/discard.c @@ -1,4 +1,3 @@ - /* * discard.c -- discard output on a file pointer * @@ -32,35 +31,35 @@ discard (FILE *io) { #ifndef HAVE_TERMIOS_H # ifdef HAVE_TERMIO_H - struct termio tio; + struct termio tio; # else - struct sgttyb tio; + struct sgttyb tio; # endif #endif - if (io == NULL) - return; + if (io == NULL) + return; #ifdef HAVE_TERMIOS_H - tcflush (fileno(io), TCOFLUSH); + tcflush (fileno(io), TCOFLUSH); #else # ifdef HAVE_TERMIO_H - if (ioctl (fileno(io), TCGETA, &tio) != -1) - ioctl (fileno(io), TCSETA, &tio); + if (ioctl (fileno(io), TCGETA, &tio) != -1) + ioctl (fileno(io), TCSETA, &tio); # else - if (ioctl (fileno(io), TIOCGETP, (char *) &tio) != -1) - ioctl (fileno(io), TIOCSETP, (char *) &tio); + if (ioctl (fileno(io), TIOCGETP, (char *) &tio) != -1) + ioctl (fileno(io), TIOCSETP, (char *) &tio); # endif #endif #if defined(_FSTDIO) || defined(__DragonFly__) - fpurge (io); + fpurge (io); #else # ifdef LINUX_STDIO - io->_IO_write_ptr = io->_IO_write_base; + io->_IO_write_ptr = io->_IO_write_base; # else - if ((io->_ptr = io->_base)) - io->_cnt = 0; + if ((io->_ptr = io->_base)) + io->_cnt = 0; # endif #endif }