Skip to content

Commit fb7b7c6

Browse files
authored
Fix isystem headers including wrong files (#108)
1 parent d769df3 commit fb7b7c6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

libc/isystem/elf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#ifndef COSMOPOLITAN_LIBC_ISYSTEM_ELF_H_
22
#define COSMOPOLITAN_LIBC_ISYSTEM_ELF_H_
3-
#include "libc/elf.h"
3+
#include "libc/elf/elf.h"
44
#endif

libc/isystem/grp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#ifndef LIBC_ISYSTEM_GRP_H_
22
#define LIBC_ISYSTEM_GRP_H_
3-
#include "libc/passwd.h"
3+
#include "third_party/musl/passwd.h"
44
#endif

libc/isystem/pwd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#ifndef LIBC_ISYSTEM_PWD_H_
22
#define LIBC_ISYSTEM_PWD_H_
3-
#include "libc/passwd.h"
3+
#include "third_party/musl/passwd.h"
44
#endif

libc/isystem/utime.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#ifndef COSMOPOLITAN_LIBC_ISYSTEM_UTIME_H_
22
#define COSMOPOLITAN_LIBC_ISYSTEM_UTIME_H_
3-
#include "libc/time/utime.h"
3+
#include "libc/time/time.h"
44
#endif /* COSMOPOLITAN_LIBC_ISYSTEM_UTIME_H_ */

0 commit comments

Comments
 (0)