summaryrefslogtreecommitdiff
path: root/cad/sis
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-01-28 17:28:02 +0000
committerSteve Price <steve@FreeBSD.org>2000-01-28 17:28:02 +0000
commitf488fa58728d1ddbf5fc8856affc19046b6846a4 (patch)
tree7940814a32521227f3b12e7460fced6161a59012 /cad/sis
parentDon't try to include machine/random.h on the Alpha. (diff)
time(3) returns a time_t and not a long.
Notes
Notes: svn path=/head/; revision=25174
Diffstat (limited to 'cad/sis')
-rw-r--r--cad/sis/files/patch-ac11
-rw-r--r--cad/sis/files/patch-ad11
-rw-r--r--cad/sis/files/patch-ae11
-rw-r--r--cad/sis/files/patch-af11
4 files changed, 44 insertions, 0 deletions
diff --git a/cad/sis/files/patch-ac b/cad/sis/files/patch-ac
new file mode 100644
index 000000000000..7ec522a6e0ac
--- /dev/null
+++ b/cad/sis/files/patch-ac
@@ -0,0 +1,11 @@
+--- jedi/random.c.orig Thu Jan 27 22:04:58 2000
++++ jedi/random.c Thu Jan 27 22:12:50 2000
+@@ -29,7 +29,7 @@
+ {
+ int i, j;
+ int random_code;
+- long time();
++ time_t time();
+
+ /*
+ * generate random seed
diff --git a/cad/sis/files/patch-ad b/cad/sis/files/patch-ad
new file mode 100644
index 000000000000..21f1489fb1d2
--- /dev/null
+++ b/cad/sis/files/patch-ad
@@ -0,0 +1,11 @@
+--- nova/anneal_code.c.orig Fri Apr 22 21:02:21 1994
++++ nova/anneal_code.c Thu Jan 27 22:17:11 2000
+@@ -195,7 +195,7 @@
+ * Assign nodes initial encodings prior to annealing
+ */
+
+- long time();
++ time_t time();
+ int i,new_code,increment,range,seed,trandom();
+
+ /* seed = (int) time(0); */
diff --git a/cad/sis/files/patch-ae b/cad/sis/files/patch-ae
new file mode 100644
index 000000000000..7db5ecd8e9d8
--- /dev/null
+++ b/cad/sis/files/patch-ae
@@ -0,0 +1,11 @@
+--- nova/ihybrid_code.c.orig Thu Jan 27 22:21:28 2000
++++ nova/ihybrid_code.c Thu Jan 27 22:21:37 2000
+@@ -932,7 +932,7 @@
+
+ {
+
+- long time();
++ time_t time();
+ int code_bits,i,new_code,increment,range,seed,trandom();
+
+ if (VERBOSE) printf("\nI generated a random code\n");
diff --git a/cad/sis/files/patch-af b/cad/sis/files/patch-af
new file mode 100644
index 000000000000..05d9ee300ad5
--- /dev/null
+++ b/cad/sis/files/patch-af
@@ -0,0 +1,11 @@
+--- nova/log_output.c.orig Thu Jan 27 22:23:24 2000
++++ nova/log_output.c Thu Jan 27 22:23:38 2000
+@@ -157,7 +157,7 @@
+
+ {
+
+- long time();
++ time_t time();
+ int i,new_code,increment,range,current_size,seed,trandom();
+
+ seed = (int) time(0);