Remove old tools.

pull/2/head
Nicholas Marriott 2015-06-04 08:25:39 +01:00
parent c0a790453c
commit 9d80ad16f9
3 changed files with 0 additions and 37 deletions

View File

@ -1,5 +0,0 @@
# $Id$
grep "#include" compat.h|while read line; do
grep "$line" *.[ch] compat/*.[ch]
done

View File

@ -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); */
}
}

View File

@ -1 +0,0 @@
echo -ne \\033%G\\033[?47h\\033%G\\033[?47l