1 pub type c_char = i8;
2 pub type c_long = i64;
3 pub type c_ulong = u64;
4 pub type wchar_t = i32;
5 
6 pub type blkcnt_t = ::c_ulong;
7 pub type blksize_t = ::c_long;
8 pub type clock_t = ::c_long;
9 pub type clockid_t = ::c_int;
10 pub type dev_t = ::c_long;
11 pub type fsblkcnt_t = ::c_ulong;
12 pub type fsfilcnt_t = ::c_ulong;
13 pub type ino_t = ::c_ulong;
14 pub type mode_t = ::c_int;
15 pub type nfds_t = ::c_ulong;
16 pub type nlink_t = ::c_ulong;
17 pub type off_t = ::c_long;
18 pub type pthread_t = *mut ::c_void;
19 pub type pthread_attr_t = *mut ::c_void;
20 pub type pthread_cond_t = *mut ::c_void;
21 pub type pthread_condattr_t = *mut ::c_void;
22 // Must be usize due to libstd/sys_common/thread_local.rs,
23 // should technically be *mut ::c_void
24 pub type pthread_key_t = usize;
25 pub type pthread_mutex_t = *mut ::c_void;
26 pub type pthread_mutexattr_t = *mut ::c_void;
27 pub type pthread_rwlock_t = *mut ::c_void;
28 pub type pthread_rwlockattr_t = *mut ::c_void;
29 pub type rlim_t = ::c_ulonglong;
30 pub type sa_family_t = u16;
31 pub type sem_t = *mut ::c_void;
32 pub type sigset_t = ::c_ulong;
33 pub type socklen_t = u32;
34 pub type speed_t = u32;
35 pub type suseconds_t = ::c_int;
36 pub type tcflag_t = u32;
37 pub type time_t = ::c_long;
38 
39 #[cfg_attr(feature = "extra_traits", derive(Debug))]
40 pub enum timezone {}
41 impl ::Copy for timezone {}
42 impl ::Clone for timezone {
clone(&self) -> timezone43     fn clone(&self) -> timezone {
44         *self
45     }
46 }
47 
48 s_no_extra_traits! {
49     #[repr(C)]
50     pub struct utsname {
51         pub sysname: [::c_char; UTSLENGTH],
52         pub nodename: [::c_char; UTSLENGTH],
53         pub release: [::c_char; UTSLENGTH],
54         pub version: [::c_char; UTSLENGTH],
55         pub machine: [::c_char; UTSLENGTH],
56         pub domainname: [::c_char; UTSLENGTH],
57     }
58 
59     pub struct dirent {
60         pub d_ino: ::ino_t,
61         pub d_off: ::off_t,
62         pub d_reclen: ::c_ushort,
63         pub d_type: ::c_uchar,
64         pub d_name: [::c_char; 256],
65     }
66 
67     pub struct sockaddr_un {
68         pub sun_family: ::sa_family_t,
69         pub sun_path: [::c_char; 108]
70     }
71 
72     pub struct sockaddr_storage {
73         pub ss_family: ::sa_family_t,
74         __ss_padding: [
75             u8;
76             128 -
77             ::core::mem::size_of::<sa_family_t>() -
78             ::core::mem::size_of::<c_ulong>()
79         ],
80         __ss_align: ::c_ulong,
81     }
82 }
83 
84 s! {
85     pub struct addrinfo {
86         pub ai_flags: ::c_int,
87         pub ai_family: ::c_int,
88         pub ai_socktype: ::c_int,
89         pub ai_protocol: ::c_int,
90         pub ai_addrlen: ::size_t,
91         pub ai_canonname: *mut ::c_char,
92         pub ai_addr: *mut ::sockaddr,
93         pub ai_next: *mut ::addrinfo,
94     }
95 
96     pub struct Dl_info {
97         pub dli_fname: *const ::c_char,
98         pub dli_fbase: *mut ::c_void,
99         pub dli_sname: *const ::c_char,
100         pub dli_saddr: *mut ::c_void,
101     }
102 
103     pub struct epoll_event {
104         pub events: u32,
105         pub u64: u64,
106         pub _pad: u64,
107     }
108 
109     pub struct fd_set {
110         fds_bits: [::c_ulong; ::FD_SETSIZE / ULONG_SIZE],
111     }
112 
113     pub struct in_addr {
114         pub s_addr: ::in_addr_t,
115     }
116 
117     pub struct ip_mreq {
118         pub imr_multiaddr: ::in_addr,
119         pub imr_interface: ::in_addr,
120     }
121 
122     pub struct lconv {
123         pub currency_symbol: *const ::c_char,
124         pub decimal_point: *const ::c_char,
125         pub frac_digits: ::c_char,
126         pub grouping: *const ::c_char,
127         pub int_curr_symbol: *const ::c_char,
128         pub int_frac_digits: ::c_char,
129         pub mon_decimal_point: *const ::c_char,
130         pub mon_grouping: *const ::c_char,
131         pub mon_thousands_sep: *const ::c_char,
132         pub negative_sign: *const ::c_char,
133         pub n_cs_precedes: ::c_char,
134         pub n_sep_by_space: ::c_char,
135         pub n_sign_posn: ::c_char,
136         pub positive_sign: *const ::c_char,
137         pub p_cs_precedes: ::c_char,
138         pub p_sep_by_space: ::c_char,
139         pub p_sign_posn: ::c_char,
140         pub thousands_sep: *const ::c_char,
141     }
142 
143     pub struct passwd {
144         pub pw_name: *mut ::c_char,
145         pub pw_passwd: *mut ::c_char,
146         pub pw_uid: ::uid_t,
147         pub pw_gid: ::gid_t,
148         pub pw_gecos: *mut ::c_char,
149         pub pw_dir: *mut ::c_char,
150         pub pw_shell: *mut ::c_char,
151     }
152 
153     pub struct sigaction {
154         pub sa_handler: ::sighandler_t,
155         pub sa_flags: ::c_ulong,
156         pub sa_restorer: ::Option<extern fn()>,
157         pub sa_mask: ::sigset_t,
158     }
159 
160     pub struct sockaddr {
161         pub sa_family: ::sa_family_t,
162         pub sa_data: [::c_char; 14],
163     }
164 
165     pub struct sockaddr_in {
166         pub sin_family: ::sa_family_t,
167         pub sin_port: ::in_port_t,
168         pub sin_addr: ::in_addr,
169         pub sin_zero: [::c_char; 8],
170     }
171 
172     pub struct sockaddr_in6 {
173         pub sin6_family: ::sa_family_t,
174         pub sin6_port: ::in_port_t,
175         pub sin6_flowinfo: u32,
176         pub sin6_addr: ::in6_addr,
177         pub sin6_scope_id: u32,
178     }
179 
180     pub struct stat {
181         pub st_dev: ::dev_t,
182         pub st_ino: ::ino_t,
183         pub st_nlink: ::nlink_t,
184         pub st_mode: ::mode_t,
185         pub st_uid: ::uid_t,
186         pub st_gid: ::gid_t,
187         pub st_rdev: ::dev_t,
188         pub st_size: ::off_t,
189         pub st_blksize: ::blksize_t,
190         pub st_blocks: ::blkcnt_t,
191         pub st_atime: ::time_t,
192         pub st_atime_nsec: ::c_long,
193         pub st_mtime: ::time_t,
194         pub st_mtime_nsec: ::c_long,
195         pub st_ctime: ::time_t,
196         pub st_ctime_nsec: ::c_long,
197         _pad: [::c_char; 24],
198     }
199 
200     pub struct statvfs {
201         pub f_bsize: ::c_ulong,
202         pub f_frsize: ::c_ulong,
203         pub f_blocks: ::fsblkcnt_t,
204         pub f_bfree: ::fsblkcnt_t,
205         pub f_bavail: ::fsblkcnt_t,
206         pub f_files: ::fsfilcnt_t,
207         pub f_ffree: ::fsfilcnt_t,
208         pub f_favail: ::fsfilcnt_t,
209         pub f_fsid: ::c_ulong,
210         pub f_flag: ::c_ulong,
211         pub f_namemax: ::c_ulong,
212     }
213 
214     pub struct termios {
215         pub c_iflag: ::tcflag_t,
216         pub c_oflag: ::tcflag_t,
217         pub c_cflag: ::tcflag_t,
218         pub c_lflag: ::tcflag_t,
219         pub c_line: ::cc_t,
220         pub c_cc: [::cc_t; ::NCCS],
221         pub c_ispeed: ::speed_t,
222         pub c_ospeed: ::speed_t,
223     }
224 
225     pub struct tm {
226         pub tm_sec: ::c_int,
227         pub tm_min: ::c_int,
228         pub tm_hour: ::c_int,
229         pub tm_mday: ::c_int,
230         pub tm_mon: ::c_int,
231         pub tm_year: ::c_int,
232         pub tm_wday: ::c_int,
233         pub tm_yday: ::c_int,
234         pub tm_isdst: ::c_int,
235         pub tm_gmtoff: ::c_long,
236         pub tm_zone: *const ::c_char,
237     }
238 }
239 
240 pub const UTSLENGTH: usize = 65;
241 
242 // intentionally not public, only used for fd_set
243 cfg_if! {
244     if #[cfg(target_pointer_width = "32")] {
245         const ULONG_SIZE: usize = 32;
246     } else if #[cfg(target_pointer_width = "64")] {
247         const ULONG_SIZE: usize = 64;
248     } else {
249         // Unknown target_pointer_width
250     }
251 }
252 
253 // limits.h
254 pub const PATH_MAX: ::c_int = 4096;
255 
256 // fcntl.h
257 pub const F_GETLK: ::c_int = 5;
258 pub const F_SETLK: ::c_int = 6;
259 pub const F_SETLKW: ::c_int = 7;
260 
261 // TODO: relibc {
262 pub const RTLD_DEFAULT: *mut ::c_void = 0i64 as *mut ::c_void;
263 // }
264 
265 // dlfcn.h
266 pub const RTLD_LAZY: ::c_int = 0x0001;
267 pub const RTLD_NOW: ::c_int = 0x0002;
268 pub const RTLD_GLOBAL: ::c_int = 0x0100;
269 pub const RTLD_LOCAL: ::c_int = 0x0000;
270 
271 // errno.h
272 pub const EPERM: ::c_int = 1; /* Operation not permitted */
273 pub const ENOENT: ::c_int = 2; /* No such file or directory */
274 pub const ESRCH: ::c_int = 3; /* No such process */
275 pub const EINTR: ::c_int = 4; /* Interrupted system call */
276 pub const EIO: ::c_int = 5; /* I/O error */
277 pub const ENXIO: ::c_int = 6; /* No such device or address */
278 pub const E2BIG: ::c_int = 7; /* Argument list too long */
279 pub const ENOEXEC: ::c_int = 8; /* Exec format error */
280 pub const EBADF: ::c_int = 9; /* Bad file number */
281 pub const ECHILD: ::c_int = 10; /* No child processes */
282 pub const EAGAIN: ::c_int = 11; /* Try again */
283 pub const ENOMEM: ::c_int = 12; /* Out of memory */
284 pub const EACCES: ::c_int = 13; /* Permission denied */
285 pub const EFAULT: ::c_int = 14; /* Bad address */
286 pub const ENOTBLK: ::c_int = 15; /* Block device required */
287 pub const EBUSY: ::c_int = 16; /* Device or resource busy */
288 pub const EEXIST: ::c_int = 17; /* File exists */
289 pub const EXDEV: ::c_int = 18; /* Cross-device link */
290 pub const ENODEV: ::c_int = 19; /* No such device */
291 pub const ENOTDIR: ::c_int = 20; /* Not a directory */
292 pub const EISDIR: ::c_int = 21; /* Is a directory */
293 pub const EINVAL: ::c_int = 22; /* Invalid argument */
294 pub const ENFILE: ::c_int = 23; /* File table overflow */
295 pub const EMFILE: ::c_int = 24; /* Too many open files */
296 pub const ENOTTY: ::c_int = 25; /* Not a typewriter */
297 pub const ETXTBSY: ::c_int = 26; /* Text file busy */
298 pub const EFBIG: ::c_int = 27; /* File too large */
299 pub const ENOSPC: ::c_int = 28; /* No space left on device */
300 pub const ESPIPE: ::c_int = 29; /* Illegal seek */
301 pub const EROFS: ::c_int = 30; /* Read-only file system */
302 pub const EMLINK: ::c_int = 31; /* Too many links */
303 pub const EPIPE: ::c_int = 32; /* Broken pipe */
304 pub const EDOM: ::c_int = 33; /* Math argument out of domain of func */
305 pub const ERANGE: ::c_int = 34; /* Math result not representable */
306 pub const EDEADLK: ::c_int = 35; /* Resource deadlock would occur */
307 pub const ENAMETOOLONG: ::c_int = 36; /* File name too long */
308 pub const ENOLCK: ::c_int = 37; /* No record locks available */
309 pub const ENOSYS: ::c_int = 38; /* Function not implemented */
310 pub const ENOTEMPTY: ::c_int = 39; /* Directory not empty */
311 pub const ELOOP: ::c_int = 40; /* Too many symbolic links encountered */
312 pub const EWOULDBLOCK: ::c_int = 41; /* Operation would block */
313 pub const ENOMSG: ::c_int = 42; /* No message of desired type */
314 pub const EIDRM: ::c_int = 43; /* Identifier removed */
315 pub const ECHRNG: ::c_int = 44; /* Channel number out of range */
316 pub const EL2NSYNC: ::c_int = 45; /* Level 2 not synchronized */
317 pub const EL3HLT: ::c_int = 46; /* Level 3 halted */
318 pub const EL3RST: ::c_int = 47; /* Level 3 reset */
319 pub const ELNRNG: ::c_int = 48; /* Link number out of range */
320 pub const EUNATCH: ::c_int = 49; /* Protocol driver not attached */
321 pub const ENOCSI: ::c_int = 50; /* No CSI structure available */
322 pub const EL2HLT: ::c_int = 51; /* Level 2 halted */
323 pub const EBADE: ::c_int = 52; /* Invalid exchange */
324 pub const EBADR: ::c_int = 53; /* Invalid request descriptor */
325 pub const EXFULL: ::c_int = 54; /* Exchange full */
326 pub const ENOANO: ::c_int = 55; /* No anode */
327 pub const EBADRQC: ::c_int = 56; /* Invalid request code */
328 pub const EBADSLT: ::c_int = 57; /* Invalid slot */
329 pub const EDEADLOCK: ::c_int = 58; /* Resource deadlock would occur */
330 pub const EBFONT: ::c_int = 59; /* Bad font file format */
331 pub const ENOSTR: ::c_int = 60; /* Device not a stream */
332 pub const ENODATA: ::c_int = 61; /* No data available */
333 pub const ETIME: ::c_int = 62; /* Timer expired */
334 pub const ENOSR: ::c_int = 63; /* Out of streams resources */
335 pub const ENONET: ::c_int = 64; /* Machine is not on the network */
336 pub const ENOPKG: ::c_int = 65; /* Package not installed */
337 pub const EREMOTE: ::c_int = 66; /* Object is remote */
338 pub const ENOLINK: ::c_int = 67; /* Link has been severed */
339 pub const EADV: ::c_int = 68; /* Advertise error */
340 pub const ESRMNT: ::c_int = 69; /* Srmount error */
341 pub const ECOMM: ::c_int = 70; /* Communication error on send */
342 pub const EPROTO: ::c_int = 71; /* Protocol error */
343 pub const EMULTIHOP: ::c_int = 72; /* Multihop attempted */
344 pub const EDOTDOT: ::c_int = 73; /* RFS specific error */
345 pub const EBADMSG: ::c_int = 74; /* Not a data message */
346 pub const EOVERFLOW: ::c_int = 75; /* Value too large for defined data type */
347 pub const ENOTUNIQ: ::c_int = 76; /* Name not unique on network */
348 pub const EBADFD: ::c_int = 77; /* File descriptor in bad state */
349 pub const EREMCHG: ::c_int = 78; /* Remote address changed */
350 pub const ELIBACC: ::c_int = 79; /* Can not access a needed shared library */
351 pub const ELIBBAD: ::c_int = 80; /* Accessing a corrupted shared library */
352 pub const ELIBSCN: ::c_int = 81; /* .lib section in a.out corrupted */
353 /* Attempting to link in too many shared libraries */
354 pub const ELIBMAX: ::c_int = 82;
355 pub const ELIBEXEC: ::c_int = 83; /* Cannot exec a shared library directly */
356 pub const EILSEQ: ::c_int = 84; /* Illegal byte sequence */
357 /* Interrupted system call should be restarted */
358 pub const ERESTART: ::c_int = 85;
359 pub const ESTRPIPE: ::c_int = 86; /* Streams pipe error */
360 pub const EUSERS: ::c_int = 87; /* Too many users */
361 pub const ENOTSOCK: ::c_int = 88; /* Socket operation on non-socket */
362 pub const EDESTADDRREQ: ::c_int = 89; /* Destination address required */
363 pub const EMSGSIZE: ::c_int = 90; /* Message too long */
364 pub const EPROTOTYPE: ::c_int = 91; /* Protocol wrong type for socket */
365 pub const ENOPROTOOPT: ::c_int = 92; /* Protocol not available */
366 pub const EPROTONOSUPPORT: ::c_int = 93; /* Protocol not supported */
367 pub const ESOCKTNOSUPPORT: ::c_int = 94; /* Socket type not supported */
368 /* Operation not supported on transport endpoint */
369 pub const EOPNOTSUPP: ::c_int = 95;
370 pub const EPFNOSUPPORT: ::c_int = 96; /* Protocol family not supported */
371 /* Address family not supported by protocol */
372 pub const EAFNOSUPPORT: ::c_int = 97;
373 pub const EADDRINUSE: ::c_int = 98; /* Address already in use */
374 pub const EADDRNOTAVAIL: ::c_int = 99; /* Cannot assign requested address */
375 pub const ENETDOWN: ::c_int = 100; /* Network is down */
376 pub const ENETUNREACH: ::c_int = 101; /* Network is unreachable */
377 /* Network dropped connection because of reset */
378 pub const ENETRESET: ::c_int = 102;
379 pub const ECONNABORTED: ::c_int = 103; /* Software caused connection abort */
380 pub const ECONNRESET: ::c_int = 104; /* Connection reset by peer */
381 pub const ENOBUFS: ::c_int = 105; /* No buffer space available */
382 pub const EISCONN: ::c_int = 106; /* Transport endpoint is already connected */
383 pub const ENOTCONN: ::c_int = 107; /* Transport endpoint is not connected */
384 /* Cannot send after transport endpoint shutdown */
385 pub const ESHUTDOWN: ::c_int = 108;
386 pub const ETOOMANYREFS: ::c_int = 109; /* Too many references: cannot splice */
387 pub const ETIMEDOUT: ::c_int = 110; /* Connection timed out */
388 pub const ECONNREFUSED: ::c_int = 111; /* Connection refused */
389 pub const EHOSTDOWN: ::c_int = 112; /* Host is down */
390 pub const EHOSTUNREACH: ::c_int = 113; /* No route to host */
391 pub const EALREADY: ::c_int = 114; /* Operation already in progress */
392 pub const EINPROGRESS: ::c_int = 115; /* Operation now in progress */
393 pub const ESTALE: ::c_int = 116; /* Stale NFS file handle */
394 pub const EUCLEAN: ::c_int = 117; /* Structure needs cleaning */
395 pub const ENOTNAM: ::c_int = 118; /* Not a XENIX named type file */
396 pub const ENAVAIL: ::c_int = 119; /* No XENIX semaphores available */
397 pub const EISNAM: ::c_int = 120; /* Is a named type file */
398 pub const EREMOTEIO: ::c_int = 121; /* Remote I/O error */
399 pub const EDQUOT: ::c_int = 122; /* Quota exceeded */
400 pub const ENOMEDIUM: ::c_int = 123; /* No medium found */
401 pub const EMEDIUMTYPE: ::c_int = 124; /* Wrong medium type */
402 pub const ECANCELED: ::c_int = 125; /* Operation Canceled */
403 pub const ENOKEY: ::c_int = 126; /* Required key not available */
404 pub const EKEYEXPIRED: ::c_int = 127; /* Key has expired */
405 pub const EKEYREVOKED: ::c_int = 128; /* Key has been revoked */
406 pub const EKEYREJECTED: ::c_int = 129; /* Key was rejected by service */
407 pub const EOWNERDEAD: ::c_int = 130; /* Owner died */
408 pub const ENOTRECOVERABLE: ::c_int = 131; /* State not recoverable */
409 
410 // fcntl.h
411 pub const F_DUPFD: ::c_int = 0;
412 pub const F_GETFD: ::c_int = 1;
413 pub const F_SETFD: ::c_int = 2;
414 pub const F_GETFL: ::c_int = 3;
415 pub const F_SETFL: ::c_int = 4;
416 // TODO: relibc {
417 pub const F_DUPFD_CLOEXEC: ::c_int = ::F_DUPFD;
418 // }
419 pub const FD_CLOEXEC: ::c_int = 0x0100_0000;
420 pub const O_RDONLY: ::c_int = 0x0001_0000;
421 pub const O_WRONLY: ::c_int = 0x0002_0000;
422 pub const O_RDWR: ::c_int = 0x0003_0000;
423 pub const O_ACCMODE: ::c_int = 0x0003_0000;
424 pub const O_NONBLOCK: ::c_int = 0x0004_0000;
425 pub const O_APPEND: ::c_int = 0x0008_0000;
426 pub const O_SHLOCK: ::c_int = 0x0010_0000;
427 pub const O_EXLOCK: ::c_int = 0x0020_0000;
428 pub const O_ASYNC: ::c_int = 0x0040_0000;
429 pub const O_FSYNC: ::c_int = 0x0080_0000;
430 pub const O_CLOEXEC: ::c_int = 0x0100_0000;
431 pub const O_CREAT: ::c_int = 0x0200_0000;
432 pub const O_TRUNC: ::c_int = 0x0400_0000;
433 pub const O_EXCL: ::c_int = 0x0800_0000;
434 pub const O_DIRECTORY: ::c_int = 0x1000_0000;
435 pub const O_PATH: ::c_int = 0x2000_0000;
436 pub const O_SYMLINK: ::c_int = 0x4000_0000;
437 // Negative to allow it to be used as int
438 // TODO: Fix negative values missing from includes
439 pub const O_NOFOLLOW: ::c_int = -0x8000_0000;
440 
441 // netdb.h
442 pub const EAI_SYSTEM: ::c_int = -11;
443 
444 // netinet/in.h
445 // TODO: relibc {
446 pub const IP_TTL: ::c_int = 2;
447 pub const IPV6_UNICAST_HOPS: ::c_int = 16;
448 pub const IPV6_MULTICAST_IF: ::c_int = 17;
449 pub const IPV6_MULTICAST_HOPS: ::c_int = 18;
450 pub const IPV6_MULTICAST_LOOP: ::c_int = 19;
451 pub const IPV6_ADD_MEMBERSHIP: ::c_int = 20;
452 pub const IPV6_DROP_MEMBERSHIP: ::c_int = 21;
453 pub const IPV6_V6ONLY: ::c_int = 26;
454 pub const IP_MULTICAST_IF: ::c_int = 32;
455 pub const IP_MULTICAST_TTL: ::c_int = 33;
456 pub const IP_MULTICAST_LOOP: ::c_int = 34;
457 pub const IP_ADD_MEMBERSHIP: ::c_int = 35;
458 pub const IP_DROP_MEMBERSHIP: ::c_int = 36;
459 // }
460 
461 // netinet/tcp.h
462 pub const TCP_NODELAY: ::c_int = 1;
463 // TODO: relibc {
464 pub const TCP_KEEPIDLE: ::c_int = 1;
465 // }
466 
467 // poll.h
468 pub const POLLIN: ::c_short = 0x001;
469 pub const POLLPRI: ::c_short = 0x002;
470 pub const POLLOUT: ::c_short = 0x004;
471 pub const POLLERR: ::c_short = 0x008;
472 pub const POLLHUP: ::c_short = 0x010;
473 pub const POLLNVAL: ::c_short = 0x020;
474 
475 // pthread.h
476 pub const PTHREAD_MUTEX_NORMAL: ::c_int = 0;
477 pub const PTHREAD_MUTEX_RECURSIVE: ::c_int = 1;
478 pub const PTHREAD_MUTEX_INITIALIZER: ::pthread_mutex_t = -1isize as *mut _;
479 pub const PTHREAD_COND_INITIALIZER: ::pthread_cond_t = -1isize as *mut _;
480 pub const PTHREAD_RWLOCK_INITIALIZER: ::pthread_rwlock_t = -1isize as *mut _;
481 pub const PTHREAD_STACK_MIN: ::size_t = 4096;
482 
483 // signal.h
484 pub const SIG_BLOCK: ::c_int = 0;
485 pub const SIG_UNBLOCK: ::c_int = 1;
486 pub const SIG_SETMASK: ::c_int = 2;
487 pub const SIGHUP: ::c_int = 1;
488 pub const SIGINT: ::c_int = 2;
489 pub const SIGQUIT: ::c_int = 3;
490 pub const SIGILL: ::c_int = 4;
491 pub const SIGTRAP: ::c_int = 5;
492 pub const SIGABRT: ::c_int = 6;
493 pub const SIGBUS: ::c_int = 7;
494 pub const SIGFPE: ::c_int = 8;
495 pub const SIGKILL: ::c_int = 9;
496 pub const SIGUSR1: ::c_int = 10;
497 pub const SIGSEGV: ::c_int = 11;
498 pub const SIGUSR2: ::c_int = 12;
499 pub const SIGPIPE: ::c_int = 13;
500 pub const SIGALRM: ::c_int = 14;
501 pub const SIGTERM: ::c_int = 15;
502 pub const SIGSTKFLT: ::c_int = 16;
503 pub const SIGCHLD: ::c_int = 17;
504 pub const SIGCONT: ::c_int = 18;
505 pub const SIGSTOP: ::c_int = 19;
506 pub const SIGTSTP: ::c_int = 20;
507 pub const SIGTTIN: ::c_int = 21;
508 pub const SIGTTOU: ::c_int = 22;
509 pub const SIGURG: ::c_int = 23;
510 pub const SIGXCPU: ::c_int = 24;
511 pub const SIGXFSZ: ::c_int = 25;
512 pub const SIGVTALRM: ::c_int = 26;
513 pub const SIGPROF: ::c_int = 27;
514 pub const SIGWINCH: ::c_int = 28;
515 pub const SIGIO: ::c_int = 29;
516 pub const SIGPWR: ::c_int = 30;
517 pub const SIGSYS: ::c_int = 31;
518 pub const NSIG: ::c_int = 32;
519 
520 pub const SA_NOCLDSTOP: ::c_ulong = 0x00000001;
521 pub const SA_NOCLDWAIT: ::c_ulong = 0x00000002;
522 pub const SA_SIGINFO: ::c_ulong = 0x00000004;
523 pub const SA_RESTORER: ::c_ulong = 0x04000000;
524 pub const SA_ONSTACK: ::c_ulong = 0x08000000;
525 pub const SA_RESTART: ::c_ulong = 0x10000000;
526 pub const SA_NODEFER: ::c_ulong = 0x40000000;
527 pub const SA_RESETHAND: ::c_ulong = 0x80000000;
528 
529 // sys/epoll.h
530 pub const EPOLL_CLOEXEC: ::c_int = 0x0100_0000;
531 pub const EPOLL_CTL_ADD: ::c_int = 1;
532 pub const EPOLL_CTL_DEL: ::c_int = 2;
533 pub const EPOLL_CTL_MOD: ::c_int = 3;
534 pub const EPOLLIN: ::c_int = 1;
535 pub const EPOLLPRI: ::c_int = 0;
536 pub const EPOLLOUT: ::c_int = 2;
537 pub const EPOLLRDNORM: ::c_int = 0;
538 pub const EPOLLNVAL: ::c_int = 0;
539 pub const EPOLLRDBAND: ::c_int = 0;
540 pub const EPOLLWRNORM: ::c_int = 0;
541 pub const EPOLLWRBAND: ::c_int = 0;
542 pub const EPOLLMSG: ::c_int = 0;
543 pub const EPOLLERR: ::c_int = 0;
544 pub const EPOLLHUP: ::c_int = 0;
545 pub const EPOLLRDHUP: ::c_int = 0;
546 pub const EPOLLEXCLUSIVE: ::c_int = 0;
547 pub const EPOLLWAKEUP: ::c_int = 0;
548 pub const EPOLLONESHOT: ::c_int = 0;
549 pub const EPOLLET: ::c_int = 0;
550 
551 // sys/stat.h
552 pub const S_IFMT: ::c_int = 0o0_170_000;
553 pub const S_IFDIR: ::c_int = 0o040_000;
554 pub const S_IFCHR: ::c_int = 0o020_000;
555 pub const S_IFBLK: ::c_int = 0o060_000;
556 pub const S_IFREG: ::c_int = 0o100_000;
557 pub const S_IFIFO: ::c_int = 0o010_000;
558 pub const S_IFLNK: ::c_int = 0o120_000;
559 pub const S_IFSOCK: ::c_int = 0o140_000;
560 pub const S_IRWXU: ::c_int = 0o0_700;
561 pub const S_IRUSR: ::c_int = 0o0_400;
562 pub const S_IWUSR: ::c_int = 0o0_200;
563 pub const S_IXUSR: ::c_int = 0o0_100;
564 pub const S_IRWXG: ::c_int = 0o0_070;
565 pub const S_IRGRP: ::c_int = 0o0_040;
566 pub const S_IWGRP: ::c_int = 0o0_020;
567 pub const S_IXGRP: ::c_int = 0o0_010;
568 pub const S_IRWXO: ::c_int = 0o0_007;
569 pub const S_IROTH: ::c_int = 0o0_004;
570 pub const S_IWOTH: ::c_int = 0o0_002;
571 pub const S_IXOTH: ::c_int = 0o0_001;
572 
573 // stdlib.h
574 pub const EXIT_SUCCESS: ::c_int = 0;
575 pub const EXIT_FAILURE: ::c_int = 1;
576 
577 // sys/ioctl.h
578 // TODO: relibc {
579 pub const FIONBIO: ::c_ulong = 0x5421;
580 pub const FIOCLEX: ::c_ulong = 0x5451;
581 // }
582 pub const TCGETS: ::c_ulong = 0x5401;
583 pub const TCSETS: ::c_ulong = 0x5402;
584 pub const TCFLSH: ::c_ulong = 0x540B;
585 pub const TIOCGPGRP: ::c_ulong = 0x540F;
586 pub const TIOCSPGRP: ::c_ulong = 0x5410;
587 pub const TIOCGWINSZ: ::c_ulong = 0x5413;
588 pub const TIOCSWINSZ: ::c_ulong = 0x5414;
589 
590 // sys/select.h
591 pub const FD_SETSIZE: usize = 1024;
592 
593 // sys/socket.h
594 pub const AF_UNIX: ::c_int = 1;
595 pub const AF_INET: ::c_int = 2;
596 pub const AF_INET6: ::c_int = 10;
597 pub const MSG_PEEK: ::c_int = 2;
598 pub const SHUT_RD: ::c_int = 0;
599 pub const SHUT_WR: ::c_int = 1;
600 pub const SHUT_RDWR: ::c_int = 2;
601 pub const SO_REUSEADDR: ::c_int = 2;
602 pub const SO_ERROR: ::c_int = 4;
603 pub const SO_BROADCAST: ::c_int = 6;
604 pub const SO_SNDBUF: ::c_int = 7;
605 pub const SO_RCVBUF: ::c_int = 8;
606 pub const SO_KEEPALIVE: ::c_int = 9;
607 pub const SO_LINGER: ::c_int = 13;
608 pub const SO_REUSEPORT: ::c_int = 15;
609 pub const SO_RCVTIMEO: ::c_int = 20;
610 pub const SO_SNDTIMEO: ::c_int = 21;
611 pub const SOCK_STREAM: ::c_int = 1;
612 pub const SOCK_DGRAM: ::c_int = 2;
613 pub const SOL_SOCKET: ::c_int = 1;
614 
615 // sys/termios.h
616 pub const NCCS: usize = 32;
617 
618 pub const VINTR: usize = 0;
619 pub const VQUIT: usize = 1;
620 pub const VERASE: usize = 2;
621 pub const VKILL: usize = 3;
622 pub const VEOF: usize = 4;
623 pub const VTIME: usize = 5;
624 pub const VMIN: usize = 6;
625 pub const VSWTC: usize = 7;
626 pub const VSTART: usize = 8;
627 pub const VSTOP: usize = 9;
628 pub const VSUSP: usize = 10;
629 pub const VEOL: usize = 11;
630 pub const VREPRINT: usize = 12;
631 pub const VDISCARD: usize = 13;
632 pub const VWERASE: usize = 14;
633 pub const VLNEXT: usize = 15;
634 pub const VEOL2: usize = 16;
635 
636 pub const IGNBRK: ::tcflag_t = 0o000_001;
637 pub const BRKINT: ::tcflag_t = 0o000_002;
638 pub const IGNPAR: ::tcflag_t = 0o000_004;
639 pub const PARMRK: ::tcflag_t = 0o000_010;
640 pub const INPCK: ::tcflag_t = 0o000_020;
641 pub const ISTRIP: ::tcflag_t = 0o000_040;
642 pub const INLCR: ::tcflag_t = 0o000_100;
643 pub const IGNCR: ::tcflag_t = 0o000_200;
644 pub const ICRNL: ::tcflag_t = 0o000_400;
645 pub const IUCLC: ::tcflag_t = 0o001_000;
646 pub const IXON: ::tcflag_t = 0o002_000;
647 pub const IXANY: ::tcflag_t = 0o004_000;
648 pub const IXOFF: ::tcflag_t = 0o010_000;
649 pub const IMAXBEL: ::tcflag_t = 0o020_000;
650 pub const IUTF8: ::tcflag_t = 0o040_000;
651 
652 pub const OPOST: ::tcflag_t = 0o000_001;
653 pub const OLCUC: ::tcflag_t = 0o000_002;
654 pub const ONLCR: ::tcflag_t = 0o000_004;
655 pub const OCRNL: ::tcflag_t = 0o000_010;
656 pub const ONOCR: ::tcflag_t = 0o000_020;
657 pub const ONLRET: ::tcflag_t = 0o00_0040;
658 pub const OFILL: ::tcflag_t = 0o000_100;
659 pub const OFDEL: ::tcflag_t = 0o000_200;
660 
661 pub const VTDLY: usize = 0o040_000;
662 pub const VT0: usize = 0o000_000;
663 pub const VT1: usize = 0o040_000;
664 
665 pub const B0: speed_t = 0o000_000;
666 pub const B50: speed_t = 0o000_001;
667 pub const B75: speed_t = 0o000_002;
668 pub const B110: speed_t = 0o000_003;
669 pub const B134: speed_t = 0o000_004;
670 pub const B150: speed_t = 0o000_005;
671 pub const B200: speed_t = 0o000_006;
672 pub const B300: speed_t = 0o000_007;
673 pub const B600: speed_t = 0o000_010;
674 pub const B1200: speed_t = 0o000_011;
675 pub const B1800: speed_t = 0o000_012;
676 pub const B2400: speed_t = 0o000_013;
677 pub const B4800: speed_t = 0o000_014;
678 pub const B9600: speed_t = 0o000_015;
679 pub const B19200: speed_t = 0o000_016;
680 pub const B38400: speed_t = 0o000_017;
681 
682 pub const B57600: speed_t = 0o010_001;
683 pub const B115200: speed_t = 0o010_002;
684 pub const B230400: speed_t = 0o010_003;
685 pub const B460800: speed_t = 0o010_004;
686 pub const B500000: speed_t = 0o010_005;
687 pub const B576000: speed_t = 0o010_006;
688 pub const B921600: speed_t = 0o010_007;
689 pub const B1000000: speed_t = 0o010_010;
690 pub const B1152000: speed_t = 0o010_011;
691 pub const B1500000: speed_t = 0o010_012;
692 pub const B2000000: speed_t = 0o010_013;
693 pub const B2500000: speed_t = 0o010_014;
694 pub const B3000000: speed_t = 0o010_015;
695 pub const B3500000: speed_t = 0o010_016;
696 pub const B4000000: speed_t = 0o010_017;
697 
698 pub const CSIZE: ::tcflag_t = 0o000_060;
699 pub const CS5: ::tcflag_t = 0o000_000;
700 pub const CS6: ::tcflag_t = 0o000_020;
701 pub const CS7: ::tcflag_t = 0o000_040;
702 pub const CS8: ::tcflag_t = 0o000_060;
703 pub const CSTOPB: ::tcflag_t = 0o000_100;
704 pub const CREAD: ::tcflag_t = 0o000_200;
705 pub const PARENB: ::tcflag_t = 0o000_400;
706 pub const PARODD: ::tcflag_t = 0o001_000;
707 pub const HUPCL: ::tcflag_t = 0o002_000;
708 pub const CLOCAL: ::tcflag_t = 0o004_000;
709 
710 pub const ISIG: ::tcflag_t = 0o000_001;
711 pub const ICANON: ::tcflag_t = 0o000_002;
712 pub const ECHO: ::tcflag_t = 0o000_010;
713 pub const ECHOE: ::tcflag_t = 0o000_020;
714 pub const ECHOK: ::tcflag_t = 0o000_040;
715 pub const ECHONL: ::tcflag_t = 0o000_100;
716 pub const NOFLSH: ::tcflag_t = 0o000_200;
717 pub const TOSTOP: ::tcflag_t = 0o000_400;
718 pub const IEXTEN: ::tcflag_t = 0o100_000;
719 
720 pub const TCOOFF: ::c_int = 0;
721 pub const TCOON: ::c_int = 1;
722 pub const TCIOFF: ::c_int = 2;
723 pub const TCION: ::c_int = 3;
724 
725 pub const TCIFLUSH: ::c_int = 0;
726 pub const TCOFLUSH: ::c_int = 1;
727 pub const TCIOFLUSH: ::c_int = 2;
728 
729 pub const TCSANOW: ::c_int = 0;
730 pub const TCSADRAIN: ::c_int = 1;
731 pub const TCSAFLUSH: ::c_int = 2;
732 
733 // sys/wait.h
734 pub const WNOHANG: ::c_int = 1;
735 pub const WUNTRACED: ::c_int = 2;
736 
737 pub const WSTOPPED: ::c_int = 2;
738 pub const WEXITED: ::c_int = 4;
739 pub const WCONTINUED: ::c_int = 8;
740 pub const WNOWAIT: ::c_int = 0x0100_0000;
741 
742 pub const __WNOTHREAD: ::c_int = 0x2000_0000;
743 pub const __WALL: ::c_int = 0x4000_0000;
744 #[allow(overflowing_literals)]
745 pub const __WCLONE: ::c_int = 0x8000_0000;
746 
747 // time.h
748 pub const CLOCK_REALTIME: ::c_int = 1;
749 pub const CLOCK_MONOTONIC: ::c_int = 4;
750 
751 // unistd.h
752 // POSIX.1 {
753 pub const _SC_ARG_MAX: ::c_int = 0;
754 pub const _SC_CHILD_MAX: ::c_int = 1;
755 pub const _SC_CLK_TCK: ::c_int = 2;
756 pub const _SC_NGROUPS_MAX: ::c_int = 3;
757 pub const _SC_OPEN_MAX: ::c_int = 4;
758 pub const _SC_STREAM_MAX: ::c_int = 5;
759 pub const _SC_TZNAME_MAX: ::c_int = 6;
760 // ...
761 pub const _SC_VERSION: ::c_int = 29;
762 pub const _SC_PAGESIZE: ::c_int = 30;
763 pub const _SC_PAGE_SIZE: ::c_int = 30;
764 // ...
765 pub const _SC_RE_DUP_MAX: ::c_int = 44;
766 // ...
767 pub const _SC_LOGIN_NAME_MAX: ::c_int = 71;
768 pub const _SC_TTY_NAME_MAX: ::c_int = 72;
769 // ...
770 pub const _SC_SYMLOOP_MAX: ::c_int = 173;
771 // ...
772 pub const _SC_HOST_NAME_MAX: ::c_int = 180;
773 // } POSIX.1
774 
775 pub const F_OK: ::c_int = 0;
776 pub const R_OK: ::c_int = 4;
777 pub const W_OK: ::c_int = 2;
778 pub const X_OK: ::c_int = 1;
779 
780 pub const SEEK_SET: ::c_int = 0;
781 pub const SEEK_CUR: ::c_int = 1;
782 pub const SEEK_END: ::c_int = 2;
783 pub const STDIN_FILENO: ::c_int = 0;
784 pub const STDOUT_FILENO: ::c_int = 1;
785 pub const STDERR_FILENO: ::c_int = 2;
786 
787 pub const _PC_LINK_MAX: ::c_int = 0;
788 pub const _PC_MAX_CANON: ::c_int = 1;
789 pub const _PC_MAX_INPUT: ::c_int = 2;
790 pub const _PC_NAME_MAX: ::c_int = 3;
791 pub const _PC_PATH_MAX: ::c_int = 4;
792 pub const _PC_PIPE_BUF: ::c_int = 5;
793 pub const _PC_CHOWN_RESTRICTED: ::c_int = 6;
794 pub const _PC_NO_TRUNC: ::c_int = 7;
795 pub const _PC_VDISABLE: ::c_int = 8;
796 pub const _PC_SYNC_IO: ::c_int = 9;
797 pub const _PC_ASYNC_IO: ::c_int = 10;
798 pub const _PC_PRIO_IO: ::c_int = 11;
799 pub const _PC_SOCK_MAXBUF: ::c_int = 12;
800 pub const _PC_FILESIZEBITS: ::c_int = 13;
801 pub const _PC_REC_INCR_XFER_SIZE: ::c_int = 14;
802 pub const _PC_REC_MAX_XFER_SIZE: ::c_int = 15;
803 pub const _PC_REC_MIN_XFER_SIZE: ::c_int = 16;
804 pub const _PC_REC_XFER_ALIGN: ::c_int = 17;
805 pub const _PC_ALLOC_SIZE_MIN: ::c_int = 18;
806 pub const _PC_SYMLINK_MAX: ::c_int = 19;
807 pub const _PC_2_SYMLINKS: ::c_int = 20;
808 
809 // wait.h
810 f! {
811     pub fn WIFSTOPPED(status: ::c_int) -> bool {
812         (status & 0xff) == 0x7f
813     }
814 
815     pub fn WSTOPSIG(status: ::c_int) -> ::c_int {
816         (status >> 8) & 0xff
817     }
818 
819     pub fn WIFCONTINUED(status: ::c_int) -> bool {
820         status == 0xffff
821     }
822 
823     pub fn WIFSIGNALED(status: ::c_int) -> bool {
824         ((status & 0x7f) + 1) as i8 >= 2
825     }
826 
827     pub fn WTERMSIG(status: ::c_int) -> ::c_int {
828         status & 0x7f
829     }
830 
831     pub fn WIFEXITED(status: ::c_int) -> bool {
832         (status & 0x7f) == 0
833     }
834 
835     pub fn WEXITSTATUS(status: ::c_int) -> ::c_int {
836         (status >> 8) & 0xff
837     }
838 
839     pub fn WCOREDUMP(status: ::c_int) -> bool {
840         (status & 0x80) != 0
841     }
842 }
843 
844 extern "C" {
845     // errno.h
__errno_location() -> *mut ::c_int846     pub fn __errno_location() -> *mut ::c_int;
strerror_r( errnum: ::c_int, buf: *mut c_char, buflen: ::size_t, ) -> ::c_int847     pub fn strerror_r(
848         errnum: ::c_int,
849         buf: *mut c_char,
850         buflen: ::size_t,
851     ) -> ::c_int;
852 
853     // unistd.h
pipe2(fds: *mut ::c_int, flags: ::c_int) -> ::c_int854     pub fn pipe2(fds: *mut ::c_int, flags: ::c_int) -> ::c_int;
855 
856     // malloc.h
memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void857     pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;
858 
859     // pthread.h
pthread_atfork( prepare: ::Option<unsafe extern "C" fn()>, parent: ::Option<unsafe extern "C" fn()>, child: ::Option<unsafe extern "C" fn()>, ) -> ::c_int860     pub fn pthread_atfork(
861         prepare: ::Option<unsafe extern "C" fn()>,
862         parent: ::Option<unsafe extern "C" fn()>,
863         child: ::Option<unsafe extern "C" fn()>,
864     ) -> ::c_int;
pthread_create( tid: *mut ::pthread_t, attr: *const ::pthread_attr_t, start: extern "C" fn(*mut ::c_void) -> *mut ::c_void, arg: *mut ::c_void, ) -> ::c_int865     pub fn pthread_create(
866         tid: *mut ::pthread_t,
867         attr: *const ::pthread_attr_t,
868         start: extern "C" fn(*mut ::c_void) -> *mut ::c_void,
869         arg: *mut ::c_void,
870     ) -> ::c_int;
pthread_condattr_setclock( attr: *mut pthread_condattr_t, clock_id: ::clockid_t, ) -> ::c_int871     pub fn pthread_condattr_setclock(
872         attr: *mut pthread_condattr_t,
873         clock_id: ::clockid_t,
874     ) -> ::c_int;
875 
876     // pwd.h
getpwuid_r( uid: ::uid_t, pwd: *mut passwd, buf: *mut ::c_char, buflen: ::size_t, result: *mut *mut passwd, ) -> ::c_int877     pub fn getpwuid_r(
878         uid: ::uid_t,
879         pwd: *mut passwd,
880         buf: *mut ::c_char,
881         buflen: ::size_t,
882         result: *mut *mut passwd,
883     ) -> ::c_int;
884 
885     // signal.h
pthread_sigmask( how: ::c_int, set: *const ::sigset_t, oldset: *mut ::sigset_t, ) -> ::c_int886     pub fn pthread_sigmask(
887         how: ::c_int,
888         set: *const ::sigset_t,
889         oldset: *mut ::sigset_t,
890     ) -> ::c_int;
891 
892     // sys/epoll.h
epoll_create(size: ::c_int) -> ::c_int893     pub fn epoll_create(size: ::c_int) -> ::c_int;
epoll_create1(flags: ::c_int) -> ::c_int894     pub fn epoll_create1(flags: ::c_int) -> ::c_int;
epoll_wait( epfd: ::c_int, events: *mut ::epoll_event, maxevents: ::c_int, timeout: ::c_int, ) -> ::c_int895     pub fn epoll_wait(
896         epfd: ::c_int,
897         events: *mut ::epoll_event,
898         maxevents: ::c_int,
899         timeout: ::c_int,
900     ) -> ::c_int;
epoll_ctl( epfd: ::c_int, op: ::c_int, fd: ::c_int, event: *mut ::epoll_event, ) -> ::c_int901     pub fn epoll_ctl(
902         epfd: ::c_int,
903         op: ::c_int,
904         fd: ::c_int,
905         event: *mut ::epoll_event,
906     ) -> ::c_int;
907 
908     // sys/ioctl.h
ioctl(fd: ::c_int, request: ::c_ulong, ...) -> ::c_int909     pub fn ioctl(fd: ::c_int, request: ::c_ulong, ...) -> ::c_int;
910 
911     // sys/resource.h
getrlimit(resource: ::c_int, rlim: *mut ::rlimit) -> ::c_int912     pub fn getrlimit(resource: ::c_int, rlim: *mut ::rlimit) -> ::c_int;
setrlimit(resource: ::c_int, rlim: *const ::rlimit) -> ::c_int913     pub fn setrlimit(resource: ::c_int, rlim: *const ::rlimit) -> ::c_int;
914 
915     // sys/socket.h
bind( socket: ::c_int, address: *const ::sockaddr, address_len: ::socklen_t, ) -> ::c_int916     pub fn bind(
917         socket: ::c_int,
918         address: *const ::sockaddr,
919         address_len: ::socklen_t,
920     ) -> ::c_int;
recvfrom( socket: ::c_int, buf: *mut ::c_void, len: ::size_t, flags: ::c_int, addr: *mut ::sockaddr, addrlen: *mut ::socklen_t, ) -> ::ssize_t921     pub fn recvfrom(
922         socket: ::c_int,
923         buf: *mut ::c_void,
924         len: ::size_t,
925         flags: ::c_int,
926         addr: *mut ::sockaddr,
927         addrlen: *mut ::socklen_t,
928     ) -> ::ssize_t;
929 
930     // sys/stat.h
futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int931     pub fn futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int;
932 
933     // sys/uio.h
readv( fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, ) -> ::ssize_t934     pub fn readv(
935         fd: ::c_int,
936         iov: *const ::iovec,
937         iovcnt: ::c_int,
938     ) -> ::ssize_t;
writev( fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, ) -> ::ssize_t939     pub fn writev(
940         fd: ::c_int,
941         iov: *const ::iovec,
942         iovcnt: ::c_int,
943     ) -> ::ssize_t;
944 
945     // sys/utsname.h
uname(utsname: *mut utsname) -> ::c_int946     pub fn uname(utsname: *mut utsname) -> ::c_int;
947 
948     // time.h
gettimeofday(tp: *mut ::timeval, tz: *mut ::timezone) -> ::c_int949     pub fn gettimeofday(tp: *mut ::timeval, tz: *mut ::timezone) -> ::c_int;
clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int950     pub fn clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
951 }
952 
953 cfg_if! {
954     if #[cfg(feature = "extra_traits")] {
955         impl PartialEq for dirent {
956             fn eq(&self, other: &dirent) -> bool {
957                 self.d_ino == other.d_ino
958                     && self.d_off == other.d_off
959                     && self.d_reclen == other.d_reclen
960                     && self.d_type == other.d_type
961                     && self
962                     .d_name
963                     .iter()
964                     .zip(other.d_name.iter())
965                     .all(|(a,b)| a == b)
966             }
967         }
968 
969         impl Eq for dirent {}
970 
971         impl ::fmt::Debug for dirent {
972             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
973                 f.debug_struct("dirent")
974                     .field("d_ino", &self.d_ino)
975                     .field("d_off", &self.d_off)
976                     .field("d_reclen", &self.d_reclen)
977                     .field("d_type", &self.d_type)
978                 // FIXME: .field("d_name", &self.d_name)
979                     .finish()
980             }
981         }
982 
983         impl ::hash::Hash for dirent {
984             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
985                 self.d_ino.hash(state);
986                 self.d_off.hash(state);
987                 self.d_reclen.hash(state);
988                 self.d_type.hash(state);
989                 self.d_name.hash(state);
990             }
991         }
992 
993         impl PartialEq for sockaddr_un {
994             fn eq(&self, other: &sockaddr_un) -> bool {
995                 self.sun_family == other.sun_family
996                     && self
997                     .sun_path
998                     .iter()
999                     .zip(other.sun_path.iter())
1000                     .all(|(a,b)| a == b)
1001             }
1002         }
1003 
1004         impl Eq for sockaddr_un {}
1005 
1006         impl ::fmt::Debug for sockaddr_un {
1007             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1008                 f.debug_struct("sockaddr_un")
1009                     .field("sun_family", &self.sun_family)
1010                 // FIXME: .field("sun_path", &self.sun_path)
1011                     .finish()
1012             }
1013         }
1014 
1015         impl ::hash::Hash for sockaddr_un {
1016             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1017                 self.sun_family.hash(state);
1018                 self.sun_path.hash(state);
1019             }
1020         }
1021 
1022         impl PartialEq for sockaddr_storage {
1023             fn eq(&self, other: &sockaddr_storage) -> bool {
1024                 self.ss_family == other.ss_family
1025                     && self.__ss_align == self.__ss_align
1026                     && self
1027                     .__ss_padding
1028                     .iter()
1029                     .zip(other.__ss_padding.iter())
1030                     .all(|(a,b)| a == b)
1031             }
1032         }
1033 
1034         impl Eq for sockaddr_storage {}
1035 
1036         impl ::fmt::Debug for sockaddr_storage {
1037             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1038                 f.debug_struct("sockaddr_storage")
1039                     .field("ss_family", &self.ss_family)
1040                     .field("__ss_align", &self.__ss_align)
1041                 // FIXME: .field("__ss_padding", &self.__ss_padding)
1042                     .finish()
1043             }
1044         }
1045 
1046         impl ::hash::Hash for sockaddr_storage {
1047             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1048                 self.ss_family.hash(state);
1049                 self.__ss_padding.hash(state);
1050                 self.__ss_align.hash(state);
1051             }
1052         }
1053 
1054         impl PartialEq for utsname {
1055             fn eq(&self, other: &utsname) -> bool {
1056                 self.sysname
1057                     .iter()
1058                     .zip(other.sysname.iter())
1059                     .all(|(a, b)| a == b)
1060                     && self
1061                     .nodename
1062                     .iter()
1063                     .zip(other.nodename.iter())
1064                     .all(|(a, b)| a == b)
1065                     && self
1066                     .release
1067                     .iter()
1068                     .zip(other.release.iter())
1069                     .all(|(a, b)| a == b)
1070                     && self
1071                     .version
1072                     .iter()
1073                     .zip(other.version.iter())
1074                     .all(|(a, b)| a == b)
1075                     && self
1076                     .machine
1077                     .iter()
1078                     .zip(other.machine.iter())
1079                     .all(|(a, b)| a == b)
1080                     && self
1081                     .domainname
1082                     .iter()
1083                     .zip(other.domainname.iter())
1084                     .all(|(a, b)| a == b)
1085             }
1086         }
1087 
1088         impl Eq for utsname {}
1089 
1090         impl ::fmt::Debug for utsname {
1091             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1092                 f.debug_struct("utsname")
1093                 // FIXME: .field("sysname", &self.sysname)
1094                 // FIXME: .field("nodename", &self.nodename)
1095                 // FIXME: .field("release", &self.release)
1096                 // FIXME: .field("version", &self.version)
1097                 // FIXME: .field("machine", &self.machine)
1098                 // FIXME: .field("domainname", &self.domainname)
1099                     .finish()
1100             }
1101         }
1102 
1103         impl ::hash::Hash for utsname {
1104             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1105                 self.sysname.hash(state);
1106                 self.nodename.hash(state);
1107                 self.release.hash(state);
1108                 self.version.hash(state);
1109                 self.machine.hash(state);
1110                 self.domainname.hash(state);
1111             }
1112         }
1113     }
1114 }
1115