4 changes: 2 additions & 2 deletions libc/include/llvm-libc-types/struct_timeval.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef LLVM_LIBC_TYPES_STRUCT_TIMEVAL_H
#define LLVM_LIBC_TYPES_STRUCT_TIMEVAL_H

#include <llvm-libc-types/suseconds_t.h>
#include <llvm-libc-types/time_t.h>
#include "llvm-libc-types/suseconds_t.h"
#include "llvm-libc-types/time_t.h"

struct timeval {
time_t tv_sec; // Seconds
Expand Down
2 changes: 1 addition & 1 deletion libc/include/llvm-libc-types/thrd_t.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_TYPES_THRD_T_H
#define LLVM_LIBC_TYPES_THRD_T_H

#include <llvm-libc-types/__thread_type.h>
#include "llvm-libc-types/__thread_type.h"

typedef __thread_type thrd_t;

Expand Down
6 changes: 3 additions & 3 deletions libc/include/math.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_MATH_H
#define LLVM_LIBC_MATH_H

#include <__llvm-libc-common.h>
#include <llvm-libc-macros/math-macros.h>
#include <llvm-libc-types/float128.h>
#include "__llvm-libc-common.h"
#include "llvm-libc-macros/math-macros.h"
#include "llvm-libc-types/float128.h"


%%public_api()
Expand Down
2 changes: 1 addition & 1 deletion libc/include/pthread.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_PTHREAD_H
#define LLVM_LIBC_PTHREAD_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#define PTHREAD_STACK_MIN (1 << 14) // 16KB

Expand Down
4 changes: 2 additions & 2 deletions libc/include/sched.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef LLVM_LIBC_SCHED_H
#define LLVM_LIBC_SCHED_H

#include <__llvm-libc-common.h>
#include <llvm-libc-macros/sched-macros.h>
#include "__llvm-libc-common.h"
#include "llvm-libc-macros/sched-macros.h"

%%public_api()

Expand Down
2 changes: 1 addition & 1 deletion libc/include/search.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_SEARCH_H
#define LLVM_LIBC_SEARCH_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"
#define __need_size_t
#include <stddef.h>

Expand Down
2 changes: 1 addition & 1 deletion libc/include/setjmp.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_SETJMP_H
#define LLVM_LIBC_SETJMP_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/signal.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
#ifndef LLVM_LIBC_SIGNAL_H
#define LLVM_LIBC_SIGNAL_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#define __need_size_t
#include <stddef.h>

#include <llvm-libc-macros/signal-macros.h>
#include "llvm-libc-macros/signal-macros.h"

%%public_api()

Expand Down
2 changes: 1 addition & 1 deletion libc/include/spawn.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_SPAWN_H
#define LLVM_LIBC_SPAWN_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/stdbit.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#ifndef LLVM_LIBC_STDBIT_H
#define LLVM_LIBC_STDBIT_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

#include <llvm-libc-macros/stdbit-macros.h>
#include "llvm-libc-macros/stdbit-macros.h"

#endif // LLVM_LIBC_STDBIT_H
4 changes: 2 additions & 2 deletions libc/include/stdckdint.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#ifndef LLVM_LIBC_STDCKDINT_H
#define LLVM_LIBC_STDCKDINT_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

#include <llvm-libc-macros/stdckdint-macros.h>
#include "llvm-libc-macros/stdckdint-macros.h"

#endif // LLVM_LIBC_STDCKDINT_H
4 changes: 2 additions & 2 deletions libc/include/stdfix.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef LLVM_LIBC_STDFIX_H
#define LLVM_LIBC_STDFIX_H

#include <__llvm-libc-common.h>
#include <llvm-libc-macros/stdfix-macros.h>
#include "__llvm-libc-common.h"
#include "llvm-libc-macros/stdfix-macros.h"

// From ISO/IEC TR 18037:2008 standard:
// https://www.iso.org/standard/51126.html
Expand Down
2 changes: 1 addition & 1 deletion libc/include/stdint.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
#ifndef LLVM_LIBC_STDINT_H
#define LLVM_LIBC_STDINT_H

#include <llvm-libc-macros/stdint-macros.h>
#include "llvm-libc-macros/stdint-macros.h"

#endif // LLVM_LIBC_STDINT_H
6 changes: 3 additions & 3 deletions libc/include/stdio.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_STDIO_H
#define LLVM_LIBC_STDIO_H

#include <__llvm-libc-common.h>
#include <llvm-libc-macros/file-seek-macros.h>
#include <llvm-libc-macros/stdio-macros.h>
#include "__llvm-libc-common.h"
#include "llvm-libc-macros/file-seek-macros.h"
#include "llvm-libc-macros/stdio-macros.h"

#include <stdarg.h>

Expand Down
4 changes: 2 additions & 2 deletions libc/include/stdlib.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef LLVM_LIBC_STDLIB_H
#define LLVM_LIBC_STDLIB_H

#include <__llvm-libc-common.h>
#include <llvm-libc-macros/stdlib-macros.h>
#include "__llvm-libc-common.h"
#include "llvm-libc-macros/stdlib-macros.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/string.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_STRING_H
#define LLVM_LIBC_STRING_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-macros/null-macro.h>
#include "llvm-libc-macros/null-macro.h"

%%public_api()

Expand Down
2 changes: 1 addition & 1 deletion libc/include/strings.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_STRINGS_H
#define LLVM_LIBC_STRINGS_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/sys/auxv.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_SYS_AUXV_H
#define LLVM_LIBC_SYS_AUXV_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-macros/sys-auxv-macros.h>
#include "llvm-libc-macros/sys-auxv-macros.h"

%%public_api()

Expand Down
2 changes: 1 addition & 1 deletion libc/include/sys/epoll.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_SYS_EPOLL_H
#define LLVM_LIBC_SYS_EPOLL_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/sys/ioctl.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_SYS_IOCTL_H
#define LLVM_LIBC_SYS_IOCTL_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-macros/sys-ioctl-macros.h>
#include "llvm-libc-macros/sys-ioctl-macros.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/sys/mman.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_SYS_MMAN_H
#define LLVM_LIBC_SYS_MMAN_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-macros/sys-mman-macros.h>
#include "llvm-libc-macros/sys-mman-macros.h"

%%public_api()

Expand Down
2 changes: 1 addition & 1 deletion libc/include/sys/prctl.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_SYS_PRCTL_H
#define LLVM_LIBC_SYS_PRCTL_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

// Process control is highly platform specific, so the platform usually defines
// the macros itself.
Expand Down
2 changes: 1 addition & 1 deletion libc/include/sys/queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
#ifndef SYS_QUEUE_H
#define SYS_QUEUE_H

#include <llvm-libc-macros/sys-queue-macros.h>
#include "llvm-libc-macros/sys-queue-macros.h"

#endif // SYS_QUEUE_H
4 changes: 2 additions & 2 deletions libc/include/sys/random.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_SYS_RANDOM_H
#define LLVM_LIBC_SYS_RANDOM_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-macros/sys-random-macros.h>
#include "llvm-libc-macros/sys-random-macros.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/sys/resource.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_SYS_RESOURCE_H
#define LLVM_LIBC_SYS_RESOURCE_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-macros/sys-resource-macros.h>
#include "llvm-libc-macros/sys-resource-macros.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/sys/select.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_SYS_SELECT_H
#define LLVM_LIBC_SYS_SELECT_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-macros/sys-select-macros.h>
#include "llvm-libc-macros/sys-select-macros.h"

%%public_api()

Expand Down
2 changes: 1 addition & 1 deletion libc/include/sys/sendfile.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_SYS_SENDFILE_H
#define LLVM_LIBC_SYS_SENDFILE_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/sys/socket.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_SYS_SOCKET_H
#define LLVM_LIBC_SYS_SOCKET_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-macros/sys-socket-macros.h>
#include "llvm-libc-macros/sys-socket-macros.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/sys/stat.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_SYS_STAT_H
#define LLVM_LIBC_SYS_STAT_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-macros/sys-stat-macros.h>
#include "llvm-libc-macros/sys-stat-macros.h"

%%public_api()

Expand Down
6 changes: 3 additions & 3 deletions libc/include/sys/time.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
#ifndef LLVM_LIBC_SYS_TIME_H
#define LLVM_LIBC_SYS_TIME_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-types/struct_timeval.h>
#include "llvm-libc-types/struct_timeval.h"

#include <llvm-libc-macros/sys-time-macros.h>
#include "llvm-libc-macros/sys-time-macros.h"

%%public_api()

Expand Down
2 changes: 1 addition & 1 deletion libc/include/sys/types.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_SYS_TYPES_H
#define LLVM_LIBC_SYS_TYPES_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

Expand Down
2 changes: 1 addition & 1 deletion libc/include/sys/utsname.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_SYS_UTSNAME_H
#define LLVM_LIBC_SYS_UTSNAME_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/sys/wait.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_SYS_WAIT_H
#define LLVM_LIBC_SYS_WAIT_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

#include <llvm-libc-macros/sys-wait-macros.h>
#include "llvm-libc-macros/sys-wait-macros.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/termios.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef LLVM_LIBC_TERMIOS_H
#define LLVM_LIBC_TERMIOS_H

#include <__llvm-libc-common.h>
#include <llvm-libc-macros/termios-macros.h>
#include "__llvm-libc-common.h"
#include "llvm-libc-macros/termios-macros.h"

%%public_api()

Expand Down
2 changes: 1 addition & 1 deletion libc/include/threads.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_THREADS_H
#define LLVM_LIBC_THREADS_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/time.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef LLVM_LIBC_TIME_H
#define LLVM_LIBC_TIME_H

#include <__llvm-libc-common.h>
#include <llvm-libc-macros/time-macros.h>
#include "__llvm-libc-common.h"
#include "llvm-libc-macros/time-macros.h"

%%public_api()

Expand Down
2 changes: 1 addition & 1 deletion libc/include/uchar.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef LLVM_LIBC_UCHAR_H
#define LLVM_LIBC_UCHAR_H

#include <__llvm-libc-common.h>
#include "__llvm-libc-common.h"

%%public_api()

Expand Down
6 changes: 3 additions & 3 deletions libc/include/unistd.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#ifndef LLVM_LIBC_UNISTD_H
#define LLVM_LIBC_UNISTD_H

#include <__llvm-libc-common.h>
#include <llvm-libc-macros/file-seek-macros.h>
#include <llvm-libc-macros/unistd-macros.h>
#include "__llvm-libc-common.h"
#include "llvm-libc-macros/file-seek-macros.h"
#include "llvm-libc-macros/unistd-macros.h"

%%public_api()

Expand Down
4 changes: 2 additions & 2 deletions libc/include/wchar.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef LLVM_LIBC_WCHAR_H
#define LLVM_LIBC_WCHAR_H

#include <__llvm-libc-common.h>
#include <llvm-libc-macros/wchar-macros.h>
#include "__llvm-libc-common.h"
#include "llvm-libc-macros/wchar-macros.h"

%%public_api()

Expand Down