[libc-commits] [libc] c5fc073 - [libc] Use correct include path for in_port_t.h (#197187)

via libc-commits libc-commits at lists.llvm.org
Tue May 12 06:23:20 PDT 2026


Author: Aiden Grossman
Date: 2026-05-12T06:23:15-07:00
New Revision: c5fc073cbd35f0e9482006323e39e9b47efdf209

URL: https://github.com/llvm/llvm-project/commit/c5fc073cbd35f0e9482006323e39e9b47efdf209
DIFF: https://github.com/llvm/llvm-project/commit/c5fc073cbd35f0e9482006323e39e9b47efdf209.diff

LOG: [libc] Use correct include path for in_port_t.h (#197187)

llvm-libc-types/stdint-macros.h does not exist. Not sure why this was
passing the CMake build, but this causes the bazel build to fail.

Added: 
    

Modified: 
    libc/include/llvm-libc-types/in_port_t.h

Removed: 
    


################################################################################
diff  --git a/libc/include/llvm-libc-types/in_port_t.h b/libc/include/llvm-libc-types/in_port_t.h
index daf33f91d95af..f86c39cb34e8d 100644
--- a/libc/include/llvm-libc-types/in_port_t.h
+++ b/libc/include/llvm-libc-types/in_port_t.h
@@ -9,7 +9,7 @@
 #ifndef LLVM_LIBC_TYPES_IN_PORT_T_H
 #define LLVM_LIBC_TYPES_IN_PORT_T_H
 
-#include "../llvm-libc-types/stdint-macros.h"
+#include "../llvm-libc-macros/stdint-macros.h"
 
 typedef uint16_t in_port_t;
 


        


More information about the libc-commits mailing list