aboutsummaryrefslogtreecommitdiff
path: root/vendor/libc/src/unix/hurd/b32.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/libc/src/unix/hurd/b32.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/libc/src/unix/hurd/b32.rs')
-rw-r--r--vendor/libc/src/unix/hurd/b32.rs93
1 files changed, 0 insertions, 93 deletions
diff --git a/vendor/libc/src/unix/hurd/b32.rs b/vendor/libc/src/unix/hurd/b32.rs
deleted file mode 100644
index 7e82a91..0000000
--- a/vendor/libc/src/unix/hurd/b32.rs
+++ /dev/null
@@ -1,93 +0,0 @@
-pub type c_long = i32;
-pub type c_ulong = u32;
-
-pub type __int64_t = ::c_longlong;
-pub type __uint64_t = ::c_ulonglong;
-
-pub type int_fast16_t = ::c_int;
-pub type int_fast32_t = ::c_int;
-pub type int_fast64_t = ::c_longlong;
-pub type uint_fast16_t = ::c_uint;
-pub type uint_fast32_t = ::c_uint;
-pub type uint_fast64_t = ::c_ulonglong;
-
-pub type __quad_t = ::c_longlong;
-pub type __u_quad_t = ::c_ulonglong;
-pub type __intmax_t = ::c_longlong;
-pub type __uintmax_t = ::c_ulonglong;
-
-pub type __squad_type = ::__int64_t;
-pub type __uquad_type = ::__uint64_t;
-pub type __sword_type = ::c_int;
-pub type __uword_type = ::c_uint;
-pub type __slong32_type = ::c_long;
-pub type __ulong32_type = ::c_ulong;
-pub type __s64_type = ::__int64_t;
-pub type __u64_type = ::__uint64_t;
-
-pub type __ipc_pid_t = ::c_ushort;
-
-pub type Elf32_Half = u16;
-pub type Elf32_Word = u32;
-pub type Elf32_Off = u32;
-pub type Elf32_Addr = u32;
-pub type Elf32_Section = u16;
-
-pub type Elf_Addr = ::Elf32_Addr;
-pub type Elf_Half = ::Elf32_Half;
-pub type Elf_Ehdr = ::Elf32_Ehdr;
-pub type Elf_Phdr = ::Elf32_Phdr;
-pub type Elf_Shdr = ::Elf32_Shdr;
-pub type Elf_Sym = ::Elf32_Sym;
-
-s! {
- pub struct Elf32_Ehdr {
- pub e_ident: [::c_uchar; 16],
- pub e_type: Elf32_Half,
- pub e_machine: Elf32_Half,
- pub e_version: Elf32_Word,
- pub e_entry: Elf32_Addr,
- pub e_phoff: Elf32_Off,
- pub e_shoff: Elf32_Off,
- pub e_flags: Elf32_Word,
- pub e_ehsize: Elf32_Half,
- pub e_phentsize: Elf32_Half,
- pub e_phnum: Elf32_Half,
- pub e_shentsize: Elf32_Half,
- pub e_shnum: Elf32_Half,
- pub e_shstrndx: Elf32_Half,
- }
-
- pub struct Elf32_Shdr {
- pub sh_name: Elf32_Word,
- pub sh_type: Elf32_Word,
- pub sh_flags: Elf32_Word,
- pub sh_addr: Elf32_Addr,
- pub sh_offset: Elf32_Off,
- pub sh_size: Elf32_Word,
- pub sh_link: Elf32_Word,
- pub sh_info: Elf32_Word,
- pub sh_addralign: Elf32_Word,
- pub sh_entsize: Elf32_Word,
- }
-
- pub struct Elf32_Sym {
- pub st_name: Elf32_Word,
- pub st_value: Elf32_Addr,
- pub st_size: Elf32_Word,
- pub st_info: ::c_uchar,
- pub st_other: ::c_uchar,
- pub st_shndx: Elf32_Section,
- }
-
- pub struct Elf32_Phdr {
- pub p_type: ::Elf32_Word,
- pub p_offset: ::Elf32_Off,
- pub p_vaddr: ::Elf32_Addr,
- pub p_paddr: ::Elf32_Addr,
- pub p_filesz: ::Elf32_Word,
- pub p_memsz: ::Elf32_Word,
- pub p_flags: ::Elf32_Word,
- pub p_align: ::Elf32_Word,
- }
-}