Skip to content

Commit 0d05e55

Browse files
authored
[libc] Correct include path for wchar_utils.h in libc/src/wchar/wcspbrk.cpp (#151059)
A previous change incorrectly included `wchar_util.h` using a broken relative path. This change corrects the path to `#include "src/wchar/wchar_utils.h"`.
1 parent 7162f19 commit 0d05e55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/wchar/wcspbrk.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "hdr/types/wchar_t.h"
1212
#include "src/__support/common.h"
1313
#include "src/__support/macros/null_check.h"
14-
#include "wchar_utils.h"
14+
#include "src/wchar/wchar_utils.h"
1515

1616
namespace LIBC_NAMESPACE_DECL {
1717

0 commit comments

Comments
 (0)