1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
*** backg.c.org Tue May 18 20:52:54 1999
--- backg.c Tue May 18 20:54:22 1999
***************
*** 5,11 ****
#include <stdlib.h>
#include <string.h>
#ifndef vms
! #include <malloc.h>
#endif
#include <math.h>
--- 5,14 ----
#include <stdlib.h>
#include <string.h>
#ifndef vms
! #include <sys/param.h>
! # if !(defined(BSD) && (BSD >= 199306))
! # include <malloc.h>
! # endif
#endif
#include <math.h>
*** colors.c.org Tue May 18 20:54:37 1999
--- colors.c Tue May 18 20:55:39 1999
***************
*** 7,13 ****
#include <stdio.h>
#include <ctype.h>
#ifndef vms
! #include <malloc.h>
#endif
/* X11 include(s) */
--- 7,16 ----
#include <stdio.h>
#include <ctype.h>
#ifndef vms
! #include <sys/param.h>
! # if !(defined(BSD) && (BSD >= 199306))
! # include <malloc.h>
! # endif
#endif
/* X11 include(s) */
*** effect.c.org Tue May 18 20:55:49 1999
--- effect.c Tue May 18 20:56:39 1999
***************
*** 7,13 ****
#include <stdio.h>
#include <ctype.h>
#ifndef vms
! #include <malloc.h>
#endif
/* X11 include(s) */
--- 7,16 ----
#include <stdio.h>
#include <ctype.h>
#ifndef vms
! #include <sys/param.h>
! # if !(defined(BSD) && (BSD >= 199306))
! # include <malloc.h>
! # endif
#endif
/* X11 include(s) */
*** plasma.c.org Tue May 18 20:55:56 1999
--- plasma.c Tue May 18 20:56:58 1999
***************
*** 2,8 ****
#include <math.h>
#include <stdlib.h>
#ifndef vms
! #include <malloc.h>
#endif
#include <X11/Xlib.h>
--- 2,11 ----
#include <math.h>
#include <stdlib.h>
#ifndef vms
! #include <sys/param.h>
! # if !(defined(BSD) && (BSD >= 199306))
! # include <malloc.h>
! # endif
#endif
#include <X11/Xlib.h>
*** random_effect.c.org Tue May 18 20:56:06 1999
--- random_effect.c Tue May 18 20:57:12 1999
***************
*** 1,7 ****
#include <stdio.h>
#include <stdlib.h>
#ifndef vms
! #include <malloc.h>
#endif
#include <time.h>
#include <string.h>
--- 1,10 ----
#include <stdio.h>
#include <stdlib.h>
#ifndef vms
! #include <sys/param.h>
! # if !(defined(BSD) && (BSD >= 199306))
! # include <malloc.h>
! # endif
#endif
#include <time.h>
#include <string.h>
*** ripples.c.org Tue May 18 20:56:11 1999
--- ripples.c Tue May 18 20:57:22 1999
***************
*** 2,8 ****
#include <math.h>
#include <stdlib.h>
#ifndef vms
! #include <malloc.h>
#endif
/* use this to change if you want ripples with more than 256 colors */
--- 2,11 ----
#include <math.h>
#include <stdlib.h>
#ifndef vms
! #include <sys/param.h>
! # if !(defined(BSD) && (BSD >= 199306))
! # include <malloc.h>
! # endif
#endif
/* use this to change if you want ripples with more than 256 colors */
*** util.c.org Tue May 18 20:56:18 1999
--- util.c Tue May 18 20:57:34 1999
***************
*** 7,13 ****
#include <stdlib.h>
#ifndef vms
! #include <malloc.h>
#endif
#include <X11/Xlib.h>
--- 7,16 ----
#include <stdlib.h>
#ifndef vms
! #include <sys/param.h>
! # if !(defined(BSD) && (BSD >= 199306))
! # include <malloc.h>
! # endif
#endif
#include <X11/Xlib.h>
|