1 /* pptp_compat.h ... Compatibility functions
2  *
3  */
4 
5 #if defined (__SVR4) && defined (__sun) /* Solaris */
6 #include <sys/termios.h>
7 
8 #define u_int8_t  uint8_t
9 #define u_int16_t uint16_t
10 #define u_int32_t uint32_t
11 
12 #ifndef INADDR_NONE
13 #define INADDR_NONE 0xffffffffU
14 #endif
15 
16 int daemon(int nochdir, int noclose);
17 int openpty(int *amaster, int *aslave, char *name, struct termios *termp, struct winsize * winp);
18 #endif /* Solaris */
19