[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
diff --git a/libc/include/sys/auxv.h.def b/libc/include/sys/auxv.h.def
index 504c2f6..11ab25b 100644
--- a/libc/include/sys/auxv.h.def
+++ b/libc/include/sys/auxv.h.def
@@ -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()
diff --git a/libc/include/sys/epoll.h.def b/libc/include/sys/epoll.h.def
index 490fad9..85f7d9a 100644
--- a/libc/include/sys/epoll.h.def
+++ b/libc/include/sys/epoll.h.def
@@ -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()
diff --git a/libc/include/sys/ioctl.h.def b/libc/include/sys/ioctl.h.def
index 90d91cf..2f37a11 100644
--- a/libc/include/sys/ioctl.h.def
+++ b/libc/include/sys/ioctl.h.def
@@ -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()
diff --git a/libc/include/sys/mman.h.def b/libc/include/sys/mman.h.def
index ab9fde1..2e2c2f1 100644
--- a/libc/include/sys/mman.h.def
+++ b/libc/include/sys/mman.h.def
@@ -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()
diff --git a/libc/include/sys/prctl.h.def b/libc/include/sys/prctl.h.def
index 0a11543..08648c9 100644
--- a/libc/include/sys/prctl.h.def
+++ b/libc/include/sys/prctl.h.def
@@ -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.
diff --git a/libc/include/sys/queue.h b/libc/include/sys/queue.h
index 1cde35e..cca53c1 100644
--- a/libc/include/sys/queue.h
+++ b/libc/include/sys/queue.h
@@ -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
diff --git a/libc/include/sys/random.h.def b/libc/include/sys/random.h.def
index b767f24..d11431b 100644
--- a/libc/include/sys/random.h.def
+++ b/libc/include/sys/random.h.def
@@ -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()
diff --git a/libc/include/sys/resource.h.def b/libc/include/sys/resource.h.def
index 31132d3..365d803 100644
--- a/libc/include/sys/resource.h.def
+++ b/libc/include/sys/resource.h.def
@@ -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()
diff --git a/libc/include/sys/select.h.def b/libc/include/sys/select.h.def
index 4f3ceba..529be71 100644
--- a/libc/include/sys/select.h.def
+++ b/libc/include/sys/select.h.def
@@ -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()
diff --git a/libc/include/sys/sendfile.h.def b/libc/include/sys/sendfile.h.def
index 947edc2..d7f21f9 100644
--- a/libc/include/sys/sendfile.h.def
+++ b/libc/include/sys/sendfile.h.def
@@ -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()
diff --git a/libc/include/sys/socket.h.def b/libc/include/sys/socket.h.def
index 71654c6..933ef15 100644
--- a/libc/include/sys/socket.h.def
+++ b/libc/include/sys/socket.h.def
@@ -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()
diff --git a/libc/include/sys/stat.h.def b/libc/include/sys/stat.h.def
index ed37d01..06a98a4 100644
--- a/libc/include/sys/stat.h.def
+++ b/libc/include/sys/stat.h.def
@@ -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()
diff --git a/libc/include/sys/time.h.def b/libc/include/sys/time.h.def
index 9a3bd7b..5a87139 100644
--- a/libc/include/sys/time.h.def
+++ b/libc/include/sys/time.h.def
@@ -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()
diff --git a/libc/include/sys/types.h.def b/libc/include/sys/types.h.def
index 6894829..f5c3bb2 100644
--- a/libc/include/sys/types.h.def
+++ b/libc/include/sys/types.h.def
@@ -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()
diff --git a/libc/include/sys/utsname.h.def b/libc/include/sys/utsname.h.def
index 6d7daeb..08dbbfc 100644
--- a/libc/include/sys/utsname.h.def
+++ b/libc/include/sys/utsname.h.def
@@ -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()
diff --git a/libc/include/sys/wait.h.def b/libc/include/sys/wait.h.def
index b4fcce4..0a76da0 100644
--- a/libc/include/sys/wait.h.def
+++ b/libc/include/sys/wait.h.def
@@ -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()