mirror of
https://github.com/nmap/nmap.git
synced 2026-09-21 15:46:45 +00:00
19 lines
323 B
C
19 lines
323 B
C
#include "common.h"
|
|
|
|
void fuzz_init(void)
|
|
{
|
|
static int initialized = 0;
|
|
|
|
if (!initialized) {
|
|
initialized = 1;
|
|
/*
|
|
* Future:
|
|
*
|
|
* - initialize Nsock
|
|
* - suppress logging
|
|
* - initialize OpenSSL
|
|
* - initialize Lua
|
|
* - etc.
|
|
*/
|
|
}
|
|
}
|