Mercurial > hg > xemacs-beta
diff src/sysdep.c @ 2311:2200ebac5409
[xemacs-hg @ 2004-09-27 18:39:11 by james]
Mark more unused parameters.
author | james |
---|---|
date | Mon, 27 Sep 2004 18:39:23 +0000 |
parents | 04bc9d2f42c7 |
children | 91a83e231f92 |
line wrap: on
line diff
--- a/src/sysdep.c Sun Sep 26 21:51:50 2004 +0000 +++ b/src/sysdep.c Mon Sep 27 18:39:23 2004 +0000 @@ -150,7 +150,13 @@ /* Arrange for character C to be read as the next input from the terminal. */ void -stuff_char (struct console *con, int c) +stuff_char (struct console *con, +#ifdef TIOCSTI + int c +#else + int UNUSED (c) +#endif + ) { int input_fd; @@ -169,7 +175,13 @@ #endif /* HAVE_TTY */ void -set_exclusive_use (int fd) +set_exclusive_use ( +#ifdef FIOCLEX + int fd +#else + int UNUSED (fd) +#endif + ) { #ifdef FIOCLEX ioctl (fd, FIOCLEX, 0);