summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>1999-01-08 03:15:21 +0000
committerwtc%netscape.com <devnull@localhost>1999-01-08 03:15:21 +0000
commitdc8a48459a0ef6fffd07c93cf43f040ce9afb78a (patch)
tree4d8fa400cdbeb752878b30200650f4736d3ff669
parente9dd4c483c252bab78b3133e6ef9d66f0246949e (diff)
downloadnspr-hg-dc8a48459a0ef6fffd07c93cf43f040ce9afb78a.tar.gz
md/_pth.h should be included after pthread.h.
-rw-r--r--pr/tests/foreign.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/tests/foreign.c b/pr/tests/foreign.c
index 54972219..4386c4a5 100644
--- a/pr/tests/foreign.c
+++ b/pr/tests/foreign.c
@@ -66,8 +66,8 @@ static int _debug_on = 0;
#define DPRINTF(arg) if (_debug_on) PR_fprintf arg
#if defined(_PR_PTHREADS) && !defined(_PR_DCETHREADS)
-#include "md/_pth.h"
#include <pthread.h>
+#include "md/_pth.h"
static void *pthread_start(void *arg)
{
StartFn start = ((StartObject*)arg)->start;