diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-01-02 03:12:08 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-01-02 03:12:08 +0000 |
commit | 08b4be197d37d0e37f8450a6ea7aa41701bb00c8 (patch) | |
tree | 92756fdb491bd626fa0b4c52fe67297d57b45bd7 /lib/libc | |
parent | 2d9cf24802c71a758076e740e823a6f68a84809a (diff) |
Change order of includes to pick up sys/types.h so that typedefs
of htonl and friends are not parse errors.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/powerpc/gen/modf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/powerpc/gen/modf.c b/lib/libc/arch/powerpc/gen/modf.c index 838b2dfc42e..396cf912540 100644 --- a/lib/libc/arch/powerpc/gen/modf.c +++ b/lib/libc/arch/powerpc/gen/modf.c @@ -39,14 +39,14 @@ static char rcsid[] = "$NetBSD: s_modf.c,v 1.8 1995/05/10 20:47:55 jtc Exp $"; /* * from: @(#)fdlibm.h 5.1 93/09/24 - * $Id: modf.c,v 1.1 1996/12/21 20:42:22 rahnds Exp $ + * $Id: modf.c,v 1.2 1997/01/02 03:12:07 rahnds Exp $ */ #ifndef _MATH_PRIVATE_H_ #define _MATH_PRIVATE_H_ -#include <machine/endian.h> #include <sys/types.h> +#include <machine/endian.h> /* The original fdlibm code used statements like: n0 = ((*(int*)&one)>>29)^1; * index of high word * |