diff options
Diffstat (limited to 'vendor/modernc.org/libc/unistd/unistd_linux_386.go')
-rw-r--r-- | vendor/modernc.org/libc/unistd/unistd_linux_386.go | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/vendor/modernc.org/libc/unistd/unistd_linux_386.go b/vendor/modernc.org/libc/unistd/unistd_linux_386.go index ffc5faca0..fc9fc5167 100644 --- a/vendor/modernc.org/libc/unistd/unistd_linux_386.go +++ b/vendor/modernc.org/libc/unistd/unistd_linux_386.go @@ -1500,7 +1500,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 */ @@ -1511,13 +1512,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 */ type Ssize_t = X__ssize_t /* unistd.h:220:19 */ @@ -1533,7 +1536,8 @@ type Ssize_t = X__ssize_t /* unistd.h:220:19 */ // A null pointer constant. // The Single Unix specification says that some more types are -// available here. +// +// available here. type Gid_t = X__gid_t /* unistd.h:232:17 */ type Uid_t = X__uid_t /* unistd.h:237:17 */ |