[libc-commits] [libc] [libc] cbrtf guard to sync with general format (PR #188207)

via libc-commits libc-commits at lists.llvm.org
Tue Mar 24 03:00:30 PDT 2026


https://github.com/Sukumarsawant created https://github.com/llvm/llvm-project/pull/188207

This PR intends to make the cbrtf guard sync with the general format.


>From 7c769d802fb5e950c41c04540ae9f9b0250bf825 Mon Sep 17 00:00:00 2001
From: Sukumarsawant <sawantsukumar at gmail.com>
Date: Tue, 24 Mar 2026 15:24:19 +0530
Subject: [PATCH] fix: guard to sync with general format

---
 libc/shared/math/cbrtf.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libc/shared/math/cbrtf.h b/libc/shared/math/cbrtf.h
index 09b86bed3fb7e..c00b858d5079d 100644
--- a/libc/shared/math/cbrtf.h
+++ b/libc/shared/math/cbrtf.h
@@ -6,8 +6,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef LIBC_SHARED_MATH_CBRTF_H
-#define LIBC_SHARED_MATH_CBRTF_H
+#ifndef LLVM_LIBC_SHARED_MATH_CBRTF_H
+#define LLVM_LIBC_SHARED_MATH_CBRTF_H
 
 #include "shared/libc_common.h"
 #include "src/__support/math/cbrtf.h"



More information about the libc-commits mailing list