diff options
Diffstat (limited to 'vendor/modernc.org/libc/fcntl/fcntl_linux_arm.go')
-rw-r--r-- | vendor/modernc.org/libc/fcntl/fcntl_linux_arm.go | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/vendor/modernc.org/libc/fcntl/fcntl_linux_arm.go b/vendor/modernc.org/libc/fcntl/fcntl_linux_arm.go index a2dcc7d05..be219a665 100644 --- a/vendor/modernc.org/libc/fcntl/fcntl_linux_arm.go +++ b/vendor/modernc.org/libc/fcntl/fcntl_linux_arm.go @@ -881,7 +881,8 @@ type X__syscall_slong_t = int32 /* types.h:196:33 */ type X__syscall_ulong_t = uint32 /* types.h:198:33 */ // These few don't really vary by system, they always correspond -// to one of the other defined types. +// +// to one of the other defined types. type X__loff_t = X__off64_t /* types.h:202:19 */ // Type of file sizes and offsets (LFS). type X__caddr_t = uintptr /* types.h:203:14 */ @@ -892,13 +893,15 @@ type X__intptr_t = int32 /* types.h:206:25 */ type X__socklen_t = uint32 /* types.h:209:23 */ // C99: An integer type that can be accessed as an atomic entity, -// even in the presence of asynchronous interrupts. -// It is not currently necessary for this to be machine-specific. +// +// even in the presence of asynchronous interrupts. +// It is not currently necessary for this to be machine-specific. type X__sig_atomic_t = int32 /* types.h:214:13 */ // Seconds since the Epoch, visible to user code when time_t is too -// narrow only for consistency with the old way of widening too-narrow -// types. User code should never use __time64_t. +// +// narrow only for consistency with the old way of widening too-narrow +// types. User code should never use __time64_t. type X__time64_t = X__int64_t /* types.h:222:28 */ // Get the definitions of O_*, F_*, FD_*: all the @@ -1002,8 +1005,9 @@ type Flock = struct { // argument). // POSIX.1-2001 specifies that these types are defined by <fcntl.h>. -// Earlier POSIX standards permitted any type ending in `_t' to be defined -// by any POSIX header, so we don't conditionalize the definitions here. +// +// Earlier POSIX standards permitted any type ending in `_t' to be defined +// by any POSIX header, so we don't conditionalize the definitions here. type Mode_t = X__mode_t /* fcntl.h:50:18 */ type Off_t = X__off64_t /* fcntl.h:58:19 */ @@ -1067,7 +1071,8 @@ type Pid_t = X__pid_t /* fcntl.h:69:17 */ // values. // POSIX.1b structure for a time value. This is like a `struct timeval' but -// has nanoseconds instead of microseconds. +// +// has nanoseconds instead of microseconds. type Timespec = struct { Ftv_sec X__time_t Ftv_nsec X__syscall_slong_t |