blob: 53a66681d2a68f5cda8da3327e2a122e19198b2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _TTYENT_H
#include <misc/ttyent.h>
# ifndef _ISOMAC
extern __typeof (getttyent) __getttyent __THROW;
libc_hidden_proto (__getttyent)
extern __typeof (setttyent) __setttyent __THROW;
libc_hidden_proto (__setttyent)
extern __typeof (endttyent) __endttyent __THROW;
libc_hidden_proto (__endttyent)
# endif /* !_ISOMAC */
#endif /* ttyent.h */
|