NetBSD support.  Thanks to Christoph Lohmann.
diff --git a/include/geometry.h b/include/geometry.h
index 274d5b0..a5bcb9c 100644
--- a/include/geometry.h
+++ b/include/geometry.h
@@ -59,7 +59,7 @@
 Quaternion qsub(Quaternion, Quaternion);
 Quaternion qneg(Quaternion);
 Quaternion qmul(Quaternion, Quaternion);
-Quaternion qdiv(Quaternion, Quaternion);
+Quaternion p9qdiv(Quaternion, Quaternion);
 Quaternion qunit(Quaternion);
 Quaternion qinv(Quaternion);
 double qlen(Quaternion);
@@ -94,6 +94,11 @@
 Point3 xformpointd(Point3, Space *, Space *);
 Point3 xformplane(Point3, Space *, Space *);
 #define	radians(d)	((d)*.01745329251994329572)
+
+#ifndef NOPLAN9DEFINES
+#define	qdiv	p9qdiv	/* for NetBSD */
+#endif
+
 #if defined(__cplusplus)
 }
 #endif
diff --git a/include/u.h b/include/u.h
index 54f4df5..84cd78d 100644
--- a/include/u.h
+++ b/include/u.h
@@ -8,6 +8,7 @@
 #define __EXTENSIONS__ 1 /* SunOS */
 /* NOT USING #define __MAKECONTEXT_V2_SOURCE 1 / * SunOS */
 #define _BSD_SOURCE 1
+#define _NETBSD_SOURCE 1	/* NetBSD */
 #define _SVID_SOURCE 1
 #define _XOPEN_SOURCE 1000
 #define _XOPEN_SOURCE_EXTENDED 1
@@ -74,6 +75,13 @@
 #	undef _NEEDUSHORT
 #	undef _NEEDUINT
 #	define _NEEDLL 1
+#elif defined(__NetBSD__)
+#	include <sched.h>
+#	include <sys/types.h>
+#	undef _NEEDUSHORT
+#	undef _NEEDUINT
+#	undef _NEEDULONG
+#	undef PLAN9PORT_USING_PTHREADS
 #else
 	/* No idea what system this is -- try some defaults */
 #	include <pthread.h>
diff --git a/man/man3/quaternion.3 b/man/man3/quaternion.3
index 941df24..224baea 100644
--- a/man/man3/quaternion.3
+++ b/man/man3/quaternion.3
@@ -150,3 +150,10 @@
 .SH SEE ALSO
 .IR matrix (3),
 .IR qball (3)
+.SH BUGS
+To avoid name conflicts with NetBSD,
+.I qdiv
+is a preprocessor macro defined as 
+.IR p9qdiv ;
+see
+.IR intro (3).
diff --git a/src/libthread/mkfile b/src/libthread/mkfile
index e77517a..b1bf3cc 100644
--- a/src/libthread/mkfile
+++ b/src/libthread/mkfile
@@ -24,7 +24,9 @@
 	9l -o $target $target.$O $PLAN9/lib/$LIB -l9 -lpthread
 
 %.$O: %.c
-	9c -I. $stem.c
+	$CC -I. $stem.c
+
+NetBSD.$O: Linux.c
 
 test:V: tprimes tspawn
 	primes 1 10007 >p1.txt
diff --git a/src/libthread/sysofiles.sh b/src/libthread/sysofiles.sh
index a7af0f5..37ab6eb 100644
--- a/src/libthread/sysofiles.sh
+++ b/src/libthread/sysofiles.sh
@@ -17,6 +17,9 @@
 *-FreeBSD-*)
 	echo $SYSNAME.o ${SYSNAME}asm.o
 	;;
+*-NetBSD-*)
+	echo $SYSNAME.o ${SYSNAME}asm.o
+	;;
 *-Darwin-*)
 	echo ${SYSNAME}-${OBJTYPE}-asm.o ${SYSNAME}-${OBJTYPE}.o pthread.o
 	;;