/usr/include/asm-generic
NameSizeModeActions
auxvec.h2180644editdlrm
bitsperlong.h5640644editdlrm
bpf_perf_event.h2380644editdlrm
errno-base.h16120644editdlrm
errno.h56480644editdlrm
fcntl.h54230644editdlrm
hugetlb_encode.h18200644editdlrm
int-l64.h7180644editdlrm
int-ll64.h8640644editdlrm
ioctl.h34780644editdlrm
ioctls.h39870644editdlrm
ipcbuf.h10350644editdlrm
kvm_para.h960644editdlrm
mman-common.h36690644editdlrm
mman.h7400644editdlrm
msgbuf.h16240644editdlrm
param.h3530644editdlrm
poll.h8470644editdlrm
posix_types.h23760644editdlrm
resource.h18720644editdlrm
sembuf.h15440644editdlrm
setup.h1900644editdlrm
shmbuf.h18170644editdlrm
siginfo.h107730644editdlrm
signal-defs.h29230644editdlrm
signal.h17900644editdlrm
socket.h36550644editdlrm
sockios.h4470644editdlrm
stat.h26330644editdlrm
statfs.h18390644editdlrm
swab.h5020644editdlrm
termbits.h47160644editdlrm
termios.h13770644editdlrm
types.h2330644editdlrm
ucontext.h3570644editdlrm
unistd.h312790644editdlrm
Edit: /usr/include/asm-generic/int-l64.h (718B)
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * asm-generic/int-l64.h * * Integer declarations for architectures which use "long" * for 64-bit types. */ #ifndef _ASM_GENERIC_INT_L64_H #define _ASM_GENERIC_INT_L64_H #include #ifndef __ASSEMBLY__ /* * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the * header files exported to user space */ typedef __signed__ char __s8; typedef unsigned char __u8; typedef __signed__ short __s16; typedef unsigned short __u16; typedef __signed__ int __s32; typedef unsigned int __u32; typedef __signed__ long __s64; typedef unsigned long __u64; #endif /* __ASSEMBLY__ */ #endif /* _ASM_GENERIC_INT_L64_H */