diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-02 08:11:16 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-02 08:11:16 +0000 |
commit | 4f122f5ffad12775b27e4c5ec4ac6b32aeeacdd5 (patch) | |
tree | 661db580fdae52693830a3a7ecef282b98befb3b | |
parent | ba5e7241b9aa05de6714a5a74f52a2370248760d (diff) |
Strict prototypes.
-rw-r--r-- | lib/libpthread/arch/m68k/uthread_machdep.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libpthread/arch/m68k/uthread_machdep.c b/lib/libpthread/arch/m68k/uthread_machdep.c index 8afde2443f3..77c8019d1da 100644 --- a/lib/libpthread/arch/m68k/uthread_machdep.c +++ b/lib/libpthread/arch/m68k/uthread_machdep.c @@ -1,11 +1,13 @@ -/* $OpenBSD: uthread_machdep.c,v 1.1 2000/09/25 09:03:44 d Exp $ */ +/* $OpenBSD: uthread_machdep.c,v 1.2 2003/06/02 08:11:15 miod Exp $ */ /* David Leonard, <d@csee.uq.edu.au>. Public domain. */ /* * Machine-dependent thread state functions for OpenBSD/m68k */ -#include "uthread_machdep.h" +#include <pthread.h> +#include "pthread_private.h" + #define ALIGNBYTES 0x3 struct frame { |