aboutsummaryrefslogtreecommitdiff
path: root/tools/fuzz.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/fuzz.c')
-rw-r--r--tools/fuzz.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/fuzz.c b/tools/fuzz.c
deleted file mode 100644
index 39a2a4db..00000000
--- a/tools/fuzz.c
+++ /dev/null
@@ -1,31 +0,0 @@
-#include <sys/types.h>
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <time.h>
-#include <unistd.h>
-
-int
-main(void)
-{
- time_t t;
- int i;
-
- setvbuf(stdout, NULL, _IONBF, 0);
-
- t = time(NULL);
- srandom((u_int) t);
-
- for (;;) {
- putchar('\033');
-
- for (i = 0; i < random() % 25; i++) {
- if (i > 22)
- putchar(';');
- else
- putchar(random() % 256);
- }
-
- /* usleep(100); */
- }
-}