View | Details | Raw Unified | Return to bug 48509
Collapse All | Expand All

(-)patch-l1 (-1 / +13 lines)
Lines 1-5 Link Here
1
--- libs/m3core/src/runtime/FreeBSD4/RTHeapDepC.c.orig	Wed May 31 13:54:33 2000
1
--- libs/m3core/src/runtime/FreeBSD4/RTHeapDepC.c.orig	Wed May 31 13:54:33 2000
2
+++ libs/m3core/src/runtime/FreeBSD4/RTHeapDepC.c	Fri Nov 23 22:45:32 2001
2
+++ libs/m3core/src/runtime/FreeBSD4/RTHeapDepC.c	Tue Feb 18 09:33:53 2003
3
@@ -98,7 +98,11 @@
3
@@ -98,7 +98,11 @@
4
 #include <sys/time.h>
4
 #include <sys/time.h>
5
 #include <nfs/rpcv2.h>
5
 #include <nfs/rpcv2.h>
Lines 36-38 Link Here
36
   } else if (strcmp(type, "nfs") == 0) {
36
   } else if (strcmp(type, "nfs") == 0) {
37
     n_data = (struct nfs_args*) data;
37
     n_data = (struct nfs_args*) data;
38
     MAKE_READABLE(n_data);
38
     MAKE_READABLE(n_data);
39
@@ -805,7 +813,11 @@
40
 
41
 int msgsnd(msqid, msgp, msgsz, msgflg)   /* ok */
42
 int msqid;
43
+#if __FreeBSD_version >= 500100
44
+const void *msgp;
45
+#else
46
 void *msgp;
47
+#endif
48
 size_t msgsz;
49
 int msgflg;
50
 { int result;

Return to bug 48509