Large reorganization of headers (WIP)

This commit is contained in:
Jeremy Soller
2018-08-26 08:11:35 -06:00
parent ff32c8cbbd
commit c20ce5ffed
261 changed files with 236 additions and 1672 deletions
+10
View File
@@ -0,0 +1,10 @@
sys_includes = ["sys/socket.h"]
include_guard = "_SYS_UN_H"
language = "C"
style = "Tag"
[export]
include = ["sockaddr_un"]
[enum]
prefix_with_name = true
+11
View File
@@ -0,0 +1,11 @@
#![no_std]
use header::sys_socket::sa_family_t;
use platform;
use platform::types::*;
#[repr(C)]
pub struct sockaddr_un {
sun_family: sa_family_t,
sun_path: [c_char; 108],
}