Fix isystem headers including wrong files (#108)

This commit is contained in:
dosisod
2021-03-06 21:06:29 -08:00
committed by GitHub
parent d769df3482
commit fb7b7c6e21
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#ifndef COSMOPOLITAN_LIBC_ISYSTEM_ELF_H_
#define COSMOPOLITAN_LIBC_ISYSTEM_ELF_H_
#include "libc/elf.h"
#include "libc/elf/elf.h"
#endif

View File

@ -1,4 +1,4 @@
#ifndef LIBC_ISYSTEM_GRP_H_
#define LIBC_ISYSTEM_GRP_H_
#include "libc/passwd.h"
#include "third_party/musl/passwd.h"
#endif

View File

@ -1,4 +1,4 @@
#ifndef LIBC_ISYSTEM_PWD_H_
#define LIBC_ISYSTEM_PWD_H_
#include "libc/passwd.h"
#include "third_party/musl/passwd.h"
#endif

View File

@ -1,4 +1,4 @@
#ifndef COSMOPOLITAN_LIBC_ISYSTEM_UTIME_H_
#define COSMOPOLITAN_LIBC_ISYSTEM_UTIME_H_
#include "libc/time/utime.h"
#include "libc/time/time.h"
#endif /* COSMOPOLITAN_LIBC_ISYSTEM_UTIME_H_ */