summaryrefslogtreecommitdiff
path: root/devel/tcl-memchan/files/patch-warnings
blob: 7717941ee17aea5b5c4f538f9a4926a9f381420b (plain) (blame)
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
--- generic/fifo.c	Mon Aug 26 13:02:08 2002
+++ generic/fifo.c	Tue Apr  6 13:34:19 2004
@@ -29,3 +29,5 @@
 
+#include <string.h>
+
 #include "memchanInt.h"
 #include "buf.h"
--- generic/fifo2.c	Mon Aug 26 13:02:08 2002
+++ generic/fifo2.c	Tue Apr  6 13:37:36 2004
@@ -29,3 +29,5 @@
 
+#include <string.h>
+
 #include "memchanInt.h"
 #include "buf.h"
--- generic/bufExt.c	Mon Aug 26 13:02:08 2002
+++ generic/bufExt.c	Tue Apr  6 13:38:40 2004
@@ -12,4 +12,6 @@
  */
 
+#include <string.h>
+
 #include "buf.h"
 
--- generic/bufRange.c	Mon Aug 26 13:02:08 2002
+++ generic/bufRange.c	Tue Apr  6 13:40:04 2004
@@ -12,4 +12,6 @@
  */
 
+#include <string.h>
+
 #include "buf.h"
 
--- generic/bufFix.c	Mon Aug 26 13:02:08 2002
+++ generic/bufFix.c	Tue Apr  6 13:40:10 2004
@@ -12,4 +12,6 @@
  */
 
+#include <string.h>
+
 #include "buf.h"
 
--- generic/buf.c	Mon Aug 26 13:02:08 2002
+++ generic/buf.c	Tue Apr  6 13:46:08 2004
@@ -64,4 +64,4 @@
 {
   Tcl_InterpDeleteProc* proc = (Tcl_InterpDeleteProc*) NULL;
-  return (int) Tcl_GetAssocData (interp, ASSOC, &proc);
+  return (int)(long) Tcl_GetAssocData (interp, ASSOC, &proc);
 }
--- generic/zero.c	2004-11-09 19:07:03.000000000 -0500
+++ generic/zero.c	2008-11-15 14:49:50.000000000 -0500
@@ -33,4 +33,5 @@
 
 #include "memchanInt.h"
+#include <string.h>
 
 /*
--- generic/random.c	2004-11-09 19:07:01.000000000 -0500
+++ generic/random.c	2008-11-15 14:51:14.000000000 -0500
@@ -34,4 +34,6 @@
 #include "../isaac/rand.h"
 #include <time.h>
+#include <string.h>
+
 /*
  * Forward declarations of internal procedures.