diff --git a/libc-test/build.rs b/libc-test/build.rs index a0b16f23..a9ac4fb3 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -105,6 +105,7 @@ fn main() { cfg.header("arpa/inet.h"); cfg.header("time64.h"); cfg.header("xlocale.h"); + cfg.header("utmp.h"); } else if !windows { cfg.header("glob.h"); cfg.header("ifaddrs.h"); @@ -122,6 +123,12 @@ fn main() { cfg.header("execinfo.h"); cfg.header("xlocale.h"); } + + if openbsd { + cfg.header("utmp.h"); + } else { + cfg.header("utmpx.h"); + } } }