artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a5f5843
)
Change order of includes to pick up sys/types.h so that typedefs
author
rahnds
<rahnds@openbsd.org>
Thu, 2 Jan 1997 03:12:07 +0000
(
03:12
+0000)
committer
rahnds
<rahnds@openbsd.org>
Thu, 2 Jan 1997 03:12:07 +0000
(
03:12
+0000)
of htonl and friends are not parse errors.
lib/libc/arch/powerpc/gen/modf.c
patch
|
blob
|
history
diff --git
a/lib/libc/arch/powerpc/gen/modf.c
b/lib/libc/arch/powerpc/gen/modf.c
index
8101062
..
396cf91
100644
(file)
--- 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.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 *