aboutsummaryrefslogtreecommitdiff
path: root/math/physcalc/files/patch-physnode.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/physcalc/files/patch-physnode.c')
-rw-r--r--math/physcalc/files/patch-physnode.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/math/physcalc/files/patch-physnode.c b/math/physcalc/files/patch-physnode.c
new file mode 100644
index 000000000000..0e2ca9307898
--- /dev/null
+++ b/math/physcalc/files/patch-physnode.c
@@ -0,0 +1,18 @@
+--- physnode.c.orig Sat Oct 7 21:33:27 2006
++++ physnode.c Sat Oct 7 21:33:30 2006
+@@ -305,12 +305,12 @@
+ }
+
+ EXPORT void bytecopy(dst, src, bytes)
+-VOID *dst;
+-VOID const *src;
++char *dst;
++char const *src;
+ int bytes;
+ {
+ while (bytes--)
+- *((char *)dst)++ = *((char const *)src)++;
++ *dst++ = *src++;
+ }
+
+ EXPORT NODEP copynode(n) /* Create a duplicate of node n (including sub-nodes) */