banan-os/kernel/kernel/build_libc.cpp

8 lines
114 B
C++

#include <string.h>
void foo()
{
strlen(nullptr);
strncpy(nullptr, nullptr, 0);
memcpy(nullptr, nullptr, 0);
}