mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 10:57:01 +00:00
9 lines
190 B
C
9 lines
190 B
C
|
#include "includes.h"
|
||
|
|
||
|
extern int LLVMFuzzerTestOneInput(const unsigned char *data, size_t size);
|
||
|
|
||
|
int main(int argc, char ** argv) {
|
||
|
LLVMFuzzerTestOneInput("hello", 5);
|
||
|
return 0;
|
||
|
}
|