ERR: Fixed unreferenced termios declaration warning.

This commit is contained in:
Brad King 2003-01-24 10:33:46 -05:00
parent 9111244018
commit 100a96297e

View File

@ -32,6 +32,17 @@
# include <form.h>
#endif
// This is a hack to prevent warnings about these functions being
// declared but not referenced.
#if defined(__sgi) && !defined(__GNUC__)
/*REFERENCED*/ speed_t cfgetospeed (const struct termios *__t);
/*REFERENCED*/ int cfsetospeed (struct termios *__t, speed_t __s);
/*REFERENCED*/ speed_t cfgetispeed (const struct termios *__t);
/*REFERENCED*/ int cfsetispeed (struct termios *__t, speed_t __s);
/*REFERENCED*/ int tcgetattr (int __fd, struct termios *__t);
/*REFERENCED*/ int tcsetattr (int __fd, int __act, const struct termios *__t);
#endif
#ifndef getmaxyx
#define getmaxyx(w,y,x) ((y) = getmaxy(w), (x) = getmaxx(w))
#endif