From 98e8a6d142da2ef6ee705b6fdc367368277a6428 Mon Sep 17 00:00:00 2001 From: lukem Date: Fri, 18 Jul 2003 15:58:43 +0000 Subject: [PATCH] #include instead of "pthread_types.h" --- lib/libpthread/pthread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libpthread/pthread.h b/lib/libpthread/pthread.h index d66955ee81fd..ff4d5ffefac9 100644 --- a/lib/libpthread/pthread.h +++ b/lib/libpthread/pthread.h @@ -1,4 +1,4 @@ -/* $NetBSD: pthread.h,v 1.12 2003/07/17 20:59:35 nathanw Exp $ */ +/* $NetBSD: pthread.h,v 1.13 2003/07/18 15:58:43 lukem Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -44,7 +44,7 @@ #include /* For timespec */ #include -#include "pthread_types.h" +#include __BEGIN_DECLS int pthread_atfork(void (*)(void), void (*)(void), void (*)(void));