Module Name: src
Committed By: christos
Date: Mon Jan 11 01:34:39 UTC 2016
Modified Files:
src/lib/libm/arch/mips: fenv.c
Log Message:
fix lint build
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libm/arch/mips/fenv.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libm/arch/mips/fenv.c
diff -u src/lib/libm/arch/mips/fenv.c:1.1 src/lib/libm/arch/mips/fenv.c:1.2
--- src/lib/libm/arch/mips/fenv.c:1.1 Mon Dec 21 12:02:02 2015
+++ src/lib/libm/arch/mips/fenv.c Sun Jan 10 20:34:39 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: fenv.c,v 1.1 2015/12/21 17:02:02 christos Exp $ */
+/* $NetBSD: fenv.c,v 1.2 2016/01/11 01:34:39 christos Exp $ */
/*-
* Copyright (c) 2004 David Schultz <[email protected]>
@@ -28,12 +28,12 @@
* $FreeBSD: head/lib/msun/mips/fenv.c 226415 2011-10-16 05:37:56Z das $
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: fenv.c,v 1.1 2015/12/21 17:02:02 christos Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.2 2016/01/11 01:34:39 christos Exp $");
#define __fenv_static
#include "fenv.h"
-#if defined(__GNUC_GNU_INLINE__) || defined(__lint__)
+#if defined(__GNUC_GNU_INLINE__) && !defined(__lint__)
#error "This file must be compiled with C99 'inline' semantics"
#endif