diff options
| author | thorpej <thorpej@NetBSD.org> | 2002-12-05 17:12:06 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2002-12-05 17:12:06 +0000 |
| commit | 4245ee1663d12fb54a6c8da7db9db5d813e570ff (patch) | |
| tree | 60a998093b8640be570966d353dadcc7a35ff217 /sys/lib/libkern/softfloat.c | |
| parent | d899fbce8b7b5eb952b65dd7b16bd013adc06c0f (diff) | |
Wrap this file in "#ifndef _STANDALONE".
Diffstat (limited to 'sys/lib/libkern/softfloat.c')
| -rw-r--r-- | sys/lib/libkern/softfloat.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/lib/libkern/softfloat.c b/sys/lib/libkern/softfloat.c index 63400457a23..f24b3aff564 100644 --- a/sys/lib/libkern/softfloat.c +++ b/sys/lib/libkern/softfloat.c @@ -1,4 +1,4 @@ -/* $NetBSD: softfloat.c,v 1.1 2001/04/26 03:10:47 ross Exp $ */ +/* $NetBSD: softfloat.c,v 1.2 2002/12/05 17:12:06 thorpej Exp $ */ /* * This version hacked for use with gcc -msoft-float by bjh21. @@ -44,9 +44,12 @@ this code that are retained. =============================================================================== */ +/* If you need this in a boot program, you have bigger problems... */ +#ifndef _STANDALONE + #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: softfloat.c,v 1.1 2001/04/26 03:10:47 ross Exp $"); +__RCSID("$NetBSD: softfloat.c,v 1.2 2002/12/05 17:12:06 thorpej Exp $"); #endif /* LIBC_SCCS and not lint */ #ifdef SOFTFLOAT_FOR_GCC @@ -5495,3 +5498,5 @@ uint32 float32_to_uint32_round_to_zero( float32 a ) } #endif + +#endif /* _STANDALONE */ |
