1/*
2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _DRIVERS_TTY_H
6#define _DRIVERS_TTY_H
7
8#include <termios.h>
9
10#define B_IOCTL_GET_TTY_INDEX	(TCGETA + 32)	/* param is int32* */
11#define B_IOCTL_GRANT_TTY		(TCGETA + 33)	/* no param (cf. grantpt()) */
12
13
14#endif	// _DRIVERS_TTY_H
15