[libc] Fix errno_macros.h include paths. (#110057)
The proxy header errno_macros.h should include relative to `libc/` but it was instead including relative to `libc/include/`. This patch fixes this by adding the `include` to the paths.
This commit is contained in:
@@ -14,9 +14,9 @@
|
||||
#ifdef __linux__
|
||||
#include <linux/errno.h>
|
||||
|
||||
#include "llvm-libc-macros/error-number-macros.h"
|
||||
#include "include/llvm-libc-macros/error-number-macros.h"
|
||||
#else // __linux__
|
||||
#include "llvm-libc-macros/generic-error-number-macros.h"
|
||||
#include "include/llvm-libc-macros/generic-error-number-macros.h"
|
||||
#endif
|
||||
|
||||
#else // Overlay mode
|
||||
|
||||
Reference in New Issue
Block a user