Files
codeql/cpp/ql/test/library-tests/syntax-zoo/modeled-functions.cpp
2021-03-23 09:53:04 +01:00

8 lines
150 B
C++

void accept(int arg, char *buf, unsigned long* bufSize);
void testAccept(int socket1, int socket2)
{
char buffer[1024];
accept(socket2, 0, 0);
}