printf core: fix gratuitous integer formatting buffer size
[musl] / include / utmpx.h
index f0c3b01..b293f42 100644 (file)
@@ -14,9 +14,9 @@ extern "C" {
 
 #include <bits/alltypes.h>
 
-struct utmpx
-{
+struct utmpx {
        short ut_type;
+       short __ut_pad1;
        pid_t ut_pid;
        char ut_line[32];
        char ut_id[4];
@@ -26,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];
@@ -39,10 +43,11 @@ struct utmpx *getutxline(const struct utmpx *);
 struct utmpx *pututxline(const struct utmpx *);
 void          setutxent(void);
 
-#if defined(_BSD_SOURCE) | defined(_GNU_SOURCE)
+#if defined(_BSD_SOURCE) || defined(_GNU_SOURCE)
 #define e_exit __e_exit
 #define e_termination __e_termination
 void updwtmpx(const char *, const struct utmpx *);
+int utmpxname(const char *);
 #endif
 
 #define EMPTY           0