mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
150 B
C++
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);
|
|
}
|