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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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_ */