shithub: fuzz

Download patch

ref: dc7e4027d1f19da1201bfa18ecff349cba85c8ec
parent: e34b47e597b95ac898f7ec90dd3c56ea2ad63cb7
author: seh <seh@localhost>
date: Sun Nov 25 11:14:08 EST 2018

fix rand ;; other fixes

--- a/input.c
+++ b/input.c
@@ -4,10 +4,6 @@
 void
 fuzz(caller *sc)
 {
-
-	// seed srand from current seed
-	srand(sc->seed);
-
 	// increment the round counter
 	(sc->round)++;
 
--- a/list.h
+++ b/list.h
@@ -1,11 +1,6 @@
 #ifndef LIST_H
 #define LIST_H
 
-#define true 1
-#define false 0
-
-#define BUFSIZE 256
-
 /* List (Queue) Architecture */
 typedef struct Node Node;
 typedef struct List List;