Skip to content

Commit ff20268

Browse files
author
Зишан Мирза
committed
undo asctime
1 parent 498bd97 commit ff20268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/test/src/time/asctime_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static inline char *call_asctime(struct tm *tm_data, int year, int month,
2121

2222
TEST(LlvmLibcAsctime, Nullptr) {
2323
char *result;
24-
result = asctime(nullptr);
24+
result = LIBC_NAMESPACE::asctime(nullptr);
2525
ASSERT_ERRNO_EQ(EINVAL);
2626
ASSERT_STREQ(nullptr, result);
2727
}

0 commit comments

Comments
 (0)