fix x32 unistd macros to report as ILP32 not LP64
[musl] / src / legacy / utmpx.c
index 46ca4b8..e2843c9 100644 (file)
@@ -1,5 +1,6 @@
 #include <utmpx.h>
 #include <stddef.h>
+#include <errno.h>
 #include "libc.h"
 
 void endutxent(void)
@@ -36,6 +37,7 @@ void updwtmpx(const char *f, const struct utmpx *u)
 
 int __utmpxname(const char *f)
 {
+       errno = ENOTSUP;
        return -1;
 }