author | Rich Felker <dalias@aerifal.cx> | 2019年12月22日 12:37:16 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019年12月22日 12:37:16 -0500 |
commit | 1e7f0fcd7ff2096904fd93a2ee6d12a2392be392 (patch) | |
tree | 71bcdc753853d22268ca7472ab7dabcbde4abeb0 /include/utmpx.h | |
parent | 3f959f6f76f16b7d954a6d8a134f3c30228d3be0 (diff) | |
download | musl-1e7f0fcd7ff2096904fd93a2ee6d12a2392be392.tar.gz |
-rw-r--r-- | include/utmpx.h | 7 |
diff --git a/include/utmpx.h b/include/utmpx.h index 0429014d..b293f427 100644 --- a/include/utmpx.h +++ b/include/utmpx.h @@ -16,6 +16,7 @@ extern "C" { struct utmpx { short ut_type; + short __ut_pad1; pid_t ut_pid; char ut_line[32]; char ut_id[4]; @@ -25,7 +26,11 @@ struct utmpx { short __e_termination; short __e_exit; } ut_exit; - long ut_session; +#if __BYTE_ORDER == 1234 + int ut_session, __ut_pad2; +#else + int __ut_pad2, ut_session; +#endif struct timeval ut_tv; unsigned ut_addr_v6[4]; char __unused[20]; |