Browse Source

Add powerpc support. To bad this needs to be modified for every

new architecture.
OPENBSD_2_1
rahnds 27 years ago
parent
commit
5d68d07847
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/lib/libc/stdlib/strtod.c

+ 3
- 2
src/lib/libc/stdlib/strtod.c View File

@ -90,11 +90,12 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char *rcsid = "$OpenBSD: strtod.c,v 1.6 1996/11/14 14:18:43 etheisen Exp $";
static char *rcsid = "$OpenBSD: strtod.c,v 1.7 1996/12/21 21:14:44 rahnds Exp $";
#endif /* LIBC_SCCS and not lint */
#if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \
defined(__mips__) || defined(__ns32k__) || defined(__alpha__)
defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \
defined(__ppc__)
#include <sys/types.h>
#if BYTE_ORDER == BIG_ENDIAN
#define IEEE_BIG_ENDIAN


Loading…
Cancel
Save