mirror of
https://github.com/tmux/tmux.git
synced 2024-12-24 01:58:46 +00:00
Remove old tools.
This commit is contained in:
parent
c0a790453c
commit
9d80ad16f9
@ -1,5 +0,0 @@
|
||||
# $Id$
|
||||
|
||||
grep "#include" compat.h|while read line; do
|
||||
grep "$line" *.[ch] compat/*.[ch]
|
||||
done
|
31
tools/fuzz.c
31
tools/fuzz.c
@ -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); */
|
||||
}
|
||||
}
|
@ -1 +0,0 @@
|
||||
echo -ne \\033%G\\033[?47h\\033%G\\033[?47l
|
Loading…
Reference in New Issue
Block a user