ports/java/jdk13/files/patch-threads_md.c
Greg Lewis da27056044 . Add missing include of <sys/time.h>, needed by <sys/resource.h> for
FreeBSD 5.x.  This fixes native threads compilation on FreeBSD 5.x.

Submitted by:	Munehiro Matsuda <haro@h4.dion.ne.jp>
2003-02-28 17:16:21 +00:00

12 lines
365 B
C

$FreeBSD$
--- ../src/solaris/hpi/native_threads/src/threads_md.c 21 Nov 2001 04:02:04 -0000 1.4
+++ ../src/solaris/hpi/native_threads/src/threads_md.c 24 Feb 2003 03:17:30 -0000
@@ -23,6 +23,7 @@
#include <setjmp.h>
#include <signal.h>
#include <sys/types.h>
+#include <sys/time.h>
#include <sys/signal.h>
#include <sys/resource.h>
#ifdef __FreeBSD__