[libc-commits] [libc] [libc] Replace relative includes with absolute paths in attributes.h (PR #179649)

via libc-commits libc-commits at lists.llvm.org
Wed Feb 4 07:35:47 PST 2026


https://github.com/MetalInMyVeins updated https://github.com/llvm/llvm-project/pull/179649

>From cf5a9f4268cd163ce8f4f42f409be6800a187737 Mon Sep 17 00:00:00 2001
From: "Hossain Md. Fahim" <hossainmdfahim66 at gmail.com>
Date: Wed, 4 Feb 2026 18:32:51 +0600
Subject: [PATCH] [libc] Replace relative includes with absolute paths in
 attributes.h

---
 libc/src/__support/macros/attributes.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libc/src/__support/macros/attributes.h b/libc/src/__support/macros/attributes.h
index d5ff028634940..66318e3ec8e23 100644
--- a/libc/src/__support/macros/attributes.h
+++ b/libc/src/__support/macros/attributes.h
@@ -17,8 +17,8 @@
 #ifndef LLVM_LIBC_SRC___SUPPORT_MACROS_ATTRIBUTES_H
 #define LLVM_LIBC_SRC___SUPPORT_MACROS_ATTRIBUTES_H
 
-#include "config.h"
-#include "properties/architectures.h"
+#include "src/__support/macros/config.h"
+#include "src/__support/macros/properties/architectures.h"
 
 #ifndef __has_attribute
 #define __has_attribute(x) 0



More information about the libc-commits mailing list