We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 498bd97 commit ff20268Copy full SHA for ff20268
libc/test/src/time/asctime_test.cpp
@@ -21,7 +21,7 @@ static inline char *call_asctime(struct tm *tm_data, int year, int month,
21
22
TEST(LlvmLibcAsctime, Nullptr) {
23
char *result;
24
- result = asctime(nullptr);
+ result = LIBC_NAMESPACE::asctime(nullptr);
25
ASSERT_ERRNO_EQ(EINVAL);
26
ASSERT_STREQ(nullptr, result);
27
}
0 commit comments