View | Details | Raw Unified | Return to bug 251868 | Differences between
and this patch

Collapse All | Expand All

(-)./termios.h (-5 / +8 lines)
Lines 32-37 Link Here
32
 * $FreeBSD$
32
 * $FreeBSD$
33
 */
33
 */
34
34
35
#if __BSD_VISIBLE
36
#include <sys/ttycom.h>
37
#include <sys/ttydefaults.h>
38
#endif
39
35
#ifndef _TERMIOS_H_
40
#ifndef _TERMIOS_H_
36
#define	_TERMIOS_H_
41
#define	_TERMIOS_H_
37
42
Lines 92-103 Link Here
92
void	cfmakeraw(struct termios *);
97
void	cfmakeraw(struct termios *);
93
void	cfmakesane(struct termios *);
98
void	cfmakesane(struct termios *);
94
int	cfsetspeed(struct termios *, speed_t);
99
int	cfsetspeed(struct termios *, speed_t);
100
101
int	tcgetwinsize(int, struct winsize *);
102
int	tcsetwinsize(int, const struct winsize *);
95
#endif
103
#endif
96
__END_DECLS
104
__END_DECLS
97
105
98
#endif /* !_TERMIOS_H_ */
106
#endif /* !_TERMIOS_H_ */
99
100
#if __BSD_VISIBLE
101
#include <sys/ttycom.h>
102
#include <sys/ttydefaults.h>
103
#endif

Return to bug 251868