posix.cfg: Cleanup test case.

This commit is contained in:
orbitcowboy 2022-04-21 09:10:13 +02:00
parent 49057543a1
commit c7ab35613e
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ int nullPointer_wcsnlen(const wchar_t *s, size_t n)
return wcsnlen(s, n);
}
size_t bufferAccessOutOfBounds_wcsnlen(const wchar_t *s, size_t maxlen)
size_t bufferAccessOutOfBounds_wcsnlen(void) // #10997
{
wchar_t buf[2]={L'4',L'2'};
size_t len = wcsnlen(buf,2);