diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-15 17:51:22 +1000 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-20 17:51:17 +1000 |
commit | d57f58814a25264aeab875a501d3eeeca12fd3f8 (patch) | |
tree | ca4fbf1ea1d499924ec9dd67a4eaa10c412df531 /include/mingw.h | |
parent | 7483649514ed2049deaf59077dbb77c915ba22a0 (diff) | |
download | busybox-w32-d57f58814a25264aeab875a501d3eeeca12fd3f8.tar.gz busybox-w32-d57f58814a25264aeab875a501d3eeeca12fd3f8.tar.bz2 busybox-w32-d57f58814a25264aeab875a501d3eeeca12fd3f8.zip |
win32: re-enable xconnect.c
Diffstat (limited to 'include/mingw.h')
-rw-r--r-- | include/mingw.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index 1caf65464..a7352bdfb 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -49,6 +49,19 @@ static inline void endgrent(void) {} | |||
49 | #define NAME_MAX 255 | 49 | #define NAME_MAX 255 |
50 | #define MAXSYMLINKS 20 | 50 | #define MAXSYMLINKS 20 |
51 | 51 | ||
52 | /* | ||
53 | * netdb.h | ||
54 | */ | ||
55 | |||
56 | typedef int sa_family_t; | ||
57 | |||
58 | /* | ||
59 | * linux/un.h | ||
60 | */ | ||
61 | struct sockaddr_un { | ||
62 | sa_family_t sun_family; | ||
63 | char sun_path[1]; /* to make compiler happy, don't bother */ | ||
64 | }; | ||
52 | 65 | ||
53 | /* | 66 | /* |
54 | * poll.h | 67 | * poll.h |