[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"`.
This commit is contained in:
Jin Huang
2025-07-28 18:14:14 -07:00
committed by GitHub
parent 7162f191b8
commit 0d05e55f69

View File

@@ -11,7 +11,7 @@
#include "hdr/types/wchar_t.h"
#include "src/__support/common.h"
#include "src/__support/macros/null_check.h"
#include "wchar_utils.h"
#include "src/wchar/wchar_utils.h"
namespace LIBC_NAMESPACE_DECL {