Module Name: src
Committed By: christos
Date: Tue Jun 18 20:17:19 UTC 2013
Modified Files:
src/sys/sys: float_ieee754.h
Log Message:
xorg's pixman-arm-neon-asm-bilinear.S wants to include this file, so make
it safe for the assembler, by eliding the only c declaration in it.
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/sys/float_ieee754.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/float_ieee754.h
diff -u src/sys/sys/float_ieee754.h:1.10 src/sys/sys/float_ieee754.h:1.11
--- src/sys/sys/float_ieee754.h:1.10 Sat Oct 1 13:39:14 2011
+++ src/sys/sys/float_ieee754.h Tue Jun 18 16:17:19 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: float_ieee754.h,v 1.10 2011/10/01 17:39:14 christos Exp $ */
+/* $NetBSD: float_ieee754.h,v 1.11 2013/06/18 20:17:19 christos Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -47,7 +47,7 @@
*/
#define _FLOAT_IEEE754 1
-#ifndef FLT_ROUNDS
+#if !defined(__ASSEMBLER__) && !defined(FLT_ROUNDS)
__BEGIN_DECLS
extern int __flt_rounds(void);
__END_DECLS