[libc] fix up the use of angle includes in include/ (#86027)
Performed en-masse via: $ grep -rn "#include <ll" libc/include -l | \ xargs perl -pi -e 's/#include <ll(.*)>/#include "ll$1"/' $ grep -rn "#include <__" libc/include -l | \ xargs perl -pi -e 's/#include <__(.*)>/#include "__$1"/' Link: #83463 Link: #83210
This commit is contained in:
parent
b44771f480
commit
cdbec7baf1
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_ARPA_INET_H
|
||||
#define LLVM_LIBC_ARPA_INET_H
|
||||
|
||||
#include <__llvm-libc-common.h>
|
||||
#include "__llvm-libc-common.h"
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include <__llvm-libc-common.h>
|
||||
#include "__llvm-libc-common.h"
|
||||
|
||||
// This file may be usefully included multiple times to change assert()'s
|
||||
// definition based on NDEBUG.
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_CTYPE_H
|
||||
#define LLVM_LIBC_CTYPE_H
|
||||
|
||||
#include <__llvm-libc-common.h>
|
||||
#include "__llvm-libc-common.h"
|
||||
|
||||
%%public_api()
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_DIRENT_H
|
||||
#define LLVM_LIBC_DIRENT_H
|
||||
|
||||
#include <__llvm-libc-common.h>
|
||||
#include "__llvm-libc-common.h"
|
||||
|
||||
%%public_api()
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_ERRNO_H
|
||||
#define LLVM_LIBC_ERRNO_H
|
||||
|
||||
#include <__llvm-libc-common.h>
|
||||
#include "__llvm-libc-common.h"
|
||||
|
||||
#ifdef __linux__
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
#endif // ENOTRECOVERABLE
|
||||
|
||||
#else // __linux__
|
||||
#include <llvm-libc-macros/generic-error-number-macros.h>
|
||||
#include "llvm-libc-macros/generic-error-number-macros.h"
|
||||
#endif
|
||||
|
||||
#if !defined(__AMDGPU__) && !defined(__NVPTX__)
|
||||
|
@ -9,8 +9,8 @@
|
||||
#ifndef LLVM_LIBC_FCNTL_H
|
||||
#define LLVM_LIBC_FCNTL_H
|
||||
|
||||
#include <__llvm-libc-common.h>
|
||||
#include <llvm-libc-macros/fcntl-macros.h>
|
||||
#include "__llvm-libc-common.h"
|
||||
#include "llvm-libc-macros/fcntl-macros.h"
|
||||
|
||||
%%public_api()
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
#ifndef LLVM_LIBC_FEATURES_H
|
||||
#define LLVM_LIBC_FEATURES_H
|
||||
|
||||
#include <__llvm-libc-common.h>
|
||||
#include <llvm-libc-macros/features-macros.h>
|
||||
#include "__llvm-libc-common.h"
|
||||
#include "llvm-libc-macros/features-macros.h"
|
||||
|
||||
%%public_api()
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
#ifndef LLVM_LIBC_FENV_H
|
||||
#define LLVM_LIBC_FENV_H
|
||||
|
||||
#include <__llvm-libc-common.h>
|
||||
#include <llvm-libc-macros/fenv-macros.h>
|
||||
#include "__llvm-libc-common.h"
|
||||
#include "llvm-libc-macros/fenv-macros.h"
|
||||
|
||||
%%public_api()
|
||||
|
||||
|
@ -9,6 +9,6 @@
|
||||
#ifndef LLVM_LIBC_FLOAT_H
|
||||
#define LLVM_LIBC_FLOAT_H
|
||||
|
||||
#include <llvm-libc-macros/float-macros.h>
|
||||
#include "llvm-libc-macros/float-macros.h"
|
||||
|
||||
#endif // LLVM_LIBC_FLOAT_H
|
||||
|
@ -9,9 +9,9 @@
|
||||
#ifndef LLVM_LIBC_GPU_RPC_H
|
||||
#define LLVM_LIBC_GPU_RPC_H
|
||||
|
||||
#include <__llvm-libc-common.h>
|
||||
#include "__llvm-libc-common.h"
|
||||
|
||||
#include <llvm-libc-types/rpc_opcodes_t.h>
|
||||
#include "llvm-libc-types/rpc_opcodes_t.h"
|
||||
|
||||
%%public_api()
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
#ifndef LLVM_LIBC_INTTYPES_H
|
||||
#define LLVM_LIBC_INTTYPES_H
|
||||
|
||||
#include <__llvm-libc-common.h>
|
||||
#include <llvm-libc-macros/inttypes-macros.h>
|
||||
#include "__llvm-libc-common.h"
|
||||
#include "llvm-libc-macros/inttypes-macros.h"
|
||||
#include <stdint.h>
|
||||
|
||||
%%public_api()
|
||||
|
@ -9,6 +9,6 @@
|
||||
#ifndef LLVM_LIBC_LIMITS_H
|
||||
#define LLVM_LIBC_LIMITS_H
|
||||
|
||||
#include <llvm-libc-macros/limits-macros.h>
|
||||
#include "llvm-libc-macros/limits-macros.h"
|
||||
|
||||
#endif // LLVM_LIBC_LIMITS_H
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_MACROS_CONTAINEROF_MACRO_H
|
||||
#define LLVM_LIBC_MACROS_CONTAINEROF_MACRO_H
|
||||
|
||||
#include <llvm-libc-macros/offsetof-macro.h>
|
||||
#include "llvm-libc-macros/offsetof-macro.h"
|
||||
|
||||
#define __containerof(ptr, type, member) \
|
||||
({ \
|
||||
|
@ -9,8 +9,8 @@
|
||||
#ifndef LLVM_LIBC_MACROS_SYS_QUEUE_MACROS_H
|
||||
#define LLVM_LIBC_MACROS_SYS_QUEUE_MACROS_H
|
||||
|
||||
#include <llvm-libc-macros/containerof-macro.h>
|
||||
#include <llvm-libc-macros/null-macro.h>
|
||||
#include "llvm-libc-macros/containerof-macro.h"
|
||||
#include "llvm-libc-macros/null-macro.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define QUEUE_TYPEOF(type) type
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES___MUTEX_TYPE_H
|
||||
#define LLVM_LIBC_TYPES___MUTEX_TYPE_H
|
||||
|
||||
#include <llvm-libc-types/__futex_word.h>
|
||||
#include "llvm-libc-types/__futex_word.h"
|
||||
|
||||
typedef struct {
|
||||
unsigned char __timed;
|
||||
|
@ -9,9 +9,9 @@
|
||||
#ifndef LLVM_LIBC_TYPES_COOKIE_IO_FUNCTIONS_T_H
|
||||
#define LLVM_LIBC_TYPES_COOKIE_IO_FUNCTIONS_T_H
|
||||
|
||||
#include <llvm-libc-types/off64_t.h>
|
||||
#include <llvm-libc-types/size_t.h>
|
||||
#include <llvm-libc-types/ssize_t.h>
|
||||
#include "llvm-libc-types/off64_t.h"
|
||||
#include "llvm-libc-types/size_t.h"
|
||||
#include "llvm-libc-types/ssize_t.h"
|
||||
|
||||
typedef ssize_t cookie_read_function_t(void *, char *, size_t);
|
||||
typedef ssize_t cookie_write_function_t(void *, const char *, size_t);
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_FD_SET_H
|
||||
#define LLVM_LIBC_TYPES_FD_SET_H
|
||||
|
||||
#include <llvm-libc-macros/sys-select-macros.h> // FD_SETSIZE
|
||||
#include "llvm-libc-macros/sys-select-macros.h" // FD_SETSIZE
|
||||
|
||||
typedef struct {
|
||||
__FD_SET_WORD_TYPE __set[__FD_SET_ARRAYSIZE];
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_MTX_T_H
|
||||
#define LLVM_LIBC_TYPES_MTX_T_H
|
||||
|
||||
#include <llvm-libc-types/__mutex_type.h>
|
||||
#include "llvm-libc-types/__mutex_type.h"
|
||||
|
||||
typedef __mutex_type mtx_t;
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_ONCE_FLAG_H
|
||||
#define LLVM_LIBC_TYPES_ONCE_FLAG_H
|
||||
|
||||
#include <llvm-libc-types/__futex_word.h>
|
||||
#include "llvm-libc-types/__futex_word.h"
|
||||
|
||||
#ifdef __linux__
|
||||
typedef __futex_word once_flag;
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_PTHREAD_ATTR_T_H
|
||||
#define LLVM_LIBC_TYPES_PTHREAD_ATTR_T_H
|
||||
|
||||
#include <llvm-libc-types/size_t.h>
|
||||
#include "llvm-libc-types/size_t.h"
|
||||
|
||||
typedef struct {
|
||||
int __detachstate;
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_PTHREAD_MUTEX_T_H
|
||||
#define LLVM_LIBC_TYPES_PTHREAD_MUTEX_T_H
|
||||
|
||||
#include <llvm-libc-types/__mutex_type.h>
|
||||
#include "llvm-libc-types/__mutex_type.h"
|
||||
|
||||
typedef __mutex_type pthread_mutex_t;
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_PTHREAD_ONCE_T_H
|
||||
#define LLVM_LIBC_TYPES_PTHREAD_ONCE_T_H
|
||||
|
||||
#include <llvm-libc-types/__futex_word.h>
|
||||
#include "llvm-libc-types/__futex_word.h"
|
||||
|
||||
#ifdef __linux__
|
||||
typedef __futex_word pthread_once_t;
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_PTHREAD_T_H
|
||||
#define LLVM_LIBC_TYPES_PTHREAD_T_H
|
||||
|
||||
#include <llvm-libc-types/__thread_type.h>
|
||||
#include "llvm-libc-types/__thread_type.h"
|
||||
|
||||
typedef __thread_type pthread_t;
|
||||
|
||||
|
@ -9,10 +9,10 @@
|
||||
#ifndef LLVM_LIBC_TYPES_SIGINFO_T_H
|
||||
#define LLVM_LIBC_TYPES_SIGINFO_T_H
|
||||
|
||||
#include <llvm-libc-types/clock_t.h>
|
||||
#include <llvm-libc-types/pid_t.h>
|
||||
#include <llvm-libc-types/uid_t.h>
|
||||
#include <llvm-libc-types/union_sigval.h>
|
||||
#include "llvm-libc-types/clock_t.h"
|
||||
#include "llvm-libc-types/pid_t.h"
|
||||
#include "llvm-libc-types/uid_t.h"
|
||||
#include "llvm-libc-types/union_sigval.h"
|
||||
|
||||
#define SI_MAX_SIZE 128
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_SIGSET_T_H
|
||||
#define LLVM_LIBC_TYPES_SIGSET_T_H
|
||||
|
||||
#include <llvm-libc-macros/signal-macros.h>
|
||||
#include "llvm-libc-macros/signal-macros.h"
|
||||
|
||||
// This definition can be adjusted/specialized for different targets and
|
||||
// platforms as necessary. This definition works for Linux on most targets.
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STACK_T_H
|
||||
#define LLVM_LIBC_TYPES_STACK_T_H
|
||||
|
||||
#include <llvm-libc-types/size_t.h>
|
||||
#include "llvm-libc-types/size_t.h"
|
||||
|
||||
typedef struct {
|
||||
// The order of the fields declared here should match the kernel definition
|
||||
|
@ -9,8 +9,8 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STRUCT_DIRENT_H
|
||||
#define LLVM_LIBC_TYPES_STRUCT_DIRENT_H
|
||||
|
||||
#include <llvm-libc-types/ino_t.h>
|
||||
#include <llvm-libc-types/off_t.h>
|
||||
#include "llvm-libc-types/ino_t.h"
|
||||
#include "llvm-libc-types/off_t.h"
|
||||
|
||||
struct dirent {
|
||||
ino_t d_ino;
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STRUCT_EPOLL_EVENT_H
|
||||
#define LLVM_LIBC_TYPES_STRUCT_EPOLL_EVENT_H
|
||||
|
||||
#include <llvm-libc-types/struct_epoll_data.h>
|
||||
#include "llvm-libc-types/struct_epoll_data.h"
|
||||
|
||||
typedef struct epoll_event {
|
||||
__UINT32_TYPE__ events;
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STRUCT_RLIMIT_H
|
||||
#define LLVM_LIBC_TYPES_STRUCT_RLIMIT_H
|
||||
|
||||
#include <llvm-libc-types/rlim_t.h>
|
||||
#include "llvm-libc-types/rlim_t.h"
|
||||
|
||||
struct rlimit {
|
||||
rlim_t rlim_cur;
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STRUCT_RUSAGE_H
|
||||
#define LLVM_LIBC_TYPES_STRUCT_RUSAGE_H
|
||||
|
||||
#include <llvm-libc-types/struct_timeval.h>
|
||||
#include "llvm-libc-types/struct_timeval.h"
|
||||
|
||||
struct rusage {
|
||||
struct timeval ru_utime;
|
||||
|
@ -9,9 +9,9 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STRUCT_SCHED_PARAM_H
|
||||
#define LLVM_LIBC_TYPES_STRUCT_SCHED_PARAM_H
|
||||
|
||||
#include <llvm-libc-types/pid_t.h>
|
||||
#include <llvm-libc-types/struct_timespec.h>
|
||||
#include <llvm-libc-types/time_t.h>
|
||||
#include "llvm-libc-types/pid_t.h"
|
||||
#include "llvm-libc-types/struct_timespec.h"
|
||||
#include "llvm-libc-types/time_t.h"
|
||||
|
||||
struct sched_param {
|
||||
// Process or thread execution scheduling priority.
|
||||
|
@ -9,8 +9,8 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STRUCT_SIGACTION_H
|
||||
#define LLVM_LIBC_TYPES_STRUCT_SIGACTION_H
|
||||
|
||||
#include <llvm-libc-types/siginfo_t.h>
|
||||
#include <llvm-libc-types/sigset_t.h>
|
||||
#include "llvm-libc-types/siginfo_t.h"
|
||||
#include "llvm-libc-types/sigset_t.h"
|
||||
|
||||
struct sigaction {
|
||||
union {
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STRUCT_SOCKADDR_H
|
||||
#define LLVM_LIBC_TYPES_STRUCT_SOCKADDR_H
|
||||
|
||||
#include <llvm-libc-types/sa_family_t.h>
|
||||
#include "llvm-libc-types/sa_family_t.h"
|
||||
|
||||
struct sockaddr {
|
||||
sa_family_t sa_family;
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STRUCT_SOCKADDR_UN_H
|
||||
#define LLVM_LIBC_TYPES_STRUCT_SOCKADDR_UN_H
|
||||
|
||||
#include <llvm-libc-types/sa_family_t.h>
|
||||
#include "llvm-libc-types/sa_family_t.h"
|
||||
|
||||
// This is the sockaddr specialization for AF_UNIX or AF_LOCAL sockets, as
|
||||
// defined by posix.
|
||||
|
@ -9,16 +9,16 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STRUCT_STAT_H
|
||||
#define LLVM_LIBC_TYPES_STRUCT_STAT_H
|
||||
|
||||
#include <llvm-libc-types/blkcnt_t.h>
|
||||
#include <llvm-libc-types/blksize_t.h>
|
||||
#include <llvm-libc-types/dev_t.h>
|
||||
#include <llvm-libc-types/gid_t.h>
|
||||
#include <llvm-libc-types/ino_t.h>
|
||||
#include <llvm-libc-types/mode_t.h>
|
||||
#include <llvm-libc-types/nlink_t.h>
|
||||
#include <llvm-libc-types/off_t.h>
|
||||
#include <llvm-libc-types/struct_timespec.h>
|
||||
#include <llvm-libc-types/uid_t.h>
|
||||
#include "llvm-libc-types/blkcnt_t.h"
|
||||
#include "llvm-libc-types/blksize_t.h"
|
||||
#include "llvm-libc-types/dev_t.h"
|
||||
#include "llvm-libc-types/gid_t.h"
|
||||
#include "llvm-libc-types/ino_t.h"
|
||||
#include "llvm-libc-types/mode_t.h"
|
||||
#include "llvm-libc-types/nlink_t.h"
|
||||
#include "llvm-libc-types/off_t.h"
|
||||
#include "llvm-libc-types/struct_timespec.h"
|
||||
#include "llvm-libc-types/uid_t.h"
|
||||
|
||||
struct stat {
|
||||
dev_t st_dev;
|
||||
|
@ -9,9 +9,9 @@
|
||||
#ifndef __LLVM_LIBC_TYPES_STRUCT_TERMIOS_H__
|
||||
#define __LLVM_LIBC_TYPES_STRUCT_TERMIOS_H__
|
||||
|
||||
#include <llvm-libc-types/cc_t.h>
|
||||
#include <llvm-libc-types/speed_t.h>
|
||||
#include <llvm-libc-types/tcflag_t.h>
|
||||
#include "llvm-libc-types/cc_t.h"
|
||||
#include "llvm-libc-types/speed_t.h"
|
||||
#include "llvm-libc-types/tcflag_t.h"
|
||||
|
||||
struct termios {
|
||||
tcflag_t c_iflag; // Input mode flags
|
||||
|
@ -9,7 +9,7 @@
|
||||
#ifndef LLVM_LIBC_TYPES_STRUCT_TIMESPEC_H
|
||||
#define LLVM_LIBC_TYPES_STRUCT_TIMESPEC_H
|
||||
|
||||
#include <llvm-libc-types/time_t.h>
|
||||
#include "llvm-libc-types/time_t.h"
|
||||
|
||||
struct timespec {
|
||||
time_t tv_sec; /* Seconds. */
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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()
|
||||
|
@ -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
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user