Changed speed_t from long to unsigned long. POSIX.1 requires an

unsigned integral type.  Changing it doesn't seem to cause any
sign extension bugs in /usr/src.  In the kernel, this is partly
because `struct speedtab' and its lookup function are too bogus
to use speed_t's for speeds - they use ints.

Reminded by:	PR 5786
This commit is contained in:
Bruce Evans
1998-03-12 14:09:55 +00:00
parent 642a4fdc7d
commit df5cf212e6
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -24,7 +24,7 @@
* SUCH DAMAGE.
*/
/* $Id: termcap.h,v 1.10 1997/02/22 15:08:12 peter Exp $ */
/* $Id: termcap.h,v 1.11 1997/04/13 11:41:59 bde Exp $ */
#ifndef _TERMCAP_H_
#define _TERMCAP_H_
@@ -46,7 +46,7 @@ extern int tputs __P((const char *, int, int (*)(int)));
extern char *tgoto __P((const char *, int, int));
extern char *tparm __P((const char *, ...));
extern void __set_ospeed __P((long speed));
extern void __set_ospeed __P((unsigned long speed));
__END_DECLS