Win32 new files.

This commit is contained in:
Bruce Momjian 1999-01-17 06:27:05 +00:00
parent 7a6b562fdf
commit bce901af7d
4 changed files with 28 additions and 0 deletions

3
src/win32/README Normal file
View File

@ -0,0 +1,3 @@
Add the included headers endian.h into Cygwin's include/, tcp.h into
include/netinet, and un.h into include/sys.

8
src/win32/endian.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef _ENDIAN_H_
#define _ENDIAN_H_
/* JKR added file, all hacks will be in the files added, not in EGCS */
#include <sys/param.h>
#endif

6
src/win32/tcp.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef _INET_TCP_
#define _INET_TCP_
/* JKR added file, all hacks will be in the files added, not in EGCS */
#endif /* _INET_TCP_ */

11
src/win32/un.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef _SYS_UN_H
#define _SYS_UN_H
/* JKR added file, all hacks will be in the files added, not in EGCS */
struct sockaddr_un {
short sun_family; /* AF_UNIX */
char sun_path[108]; /* path name (gag) */
};
#endif /* _SYS_UN_H */