Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libm/src add missing namespace.h



details:   https://anonhg.NetBSD.org/src/rev/07cc09cdba4f
branches:  trunk
changeset: 823728:07cc09cdba4f
user:      christos <christos%NetBSD.org@localhost>
date:      Sat May 06 18:02:52 2017 +0000

description:
add missing namespace.h

diffstat:

 lib/libm/src/e_sqrtl.c     |  3 ++-
 lib/libm/src/s_fma.c       |  6 ++++--
 lib/libm/src/s_fmaf.c      |  6 ++++--
 lib/libm/src/s_fmal.c      |  6 ++++--
 lib/libm/src/s_nearbyint.c |  6 ++++--
 5 files changed, 18 insertions(+), 9 deletions(-)

diffs (102 lines):

diff -r bdcfd558b857 -r 07cc09cdba4f lib/libm/src/e_sqrtl.c
--- a/lib/libm/src/e_sqrtl.c    Sat May 06 13:05:59 2017 +0000
+++ b/lib/libm/src/e_sqrtl.c    Sat May 06 18:02:52 2017 +0000
@@ -28,8 +28,9 @@
 #if 0
 __FBSDID("$FreeBSD: head/lib/msun/src/e_sqrtl.c 176720 2008-03-02 01:47:58Z das $");
 #endif
-__RCSID("$NetBSD: e_sqrtl.c,v 1.5 2016/08/26 08:31:17 christos Exp $");
+__RCSID("$NetBSD: e_sqrtl.c,v 1.6 2017/05/06 18:02:52 christos Exp $");
 
+#include "namespace.h"
 #include <machine/ieee.h>
 #include <float.h>
 
diff -r bdcfd558b857 -r 07cc09cdba4f lib/libm/src/s_fma.c
--- a/lib/libm/src/s_fma.c      Sat May 06 13:05:59 2017 +0000
+++ b/lib/libm/src/s_fma.c      Sat May 06 18:02:52 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: s_fma.c,v 1.6 2013/02/14 09:24:50 matt Exp $   */
+/*     $NetBSD: s_fma.c,v 1.7 2017/05/06 18:02:52 christos Exp $       */
 
 /*-
  * Copyright (c) 2005-2011 David Schultz <das%FreeBSD.ORG@localhost>
@@ -30,9 +30,11 @@
 #if 0
 __FBSDID("$FreeBSD: src/lib/msun/src/s_fma.c,v 1.8 2011/10/21 06:30:43 das Exp $");
 #else
-__RCSID("$NetBSD: s_fma.c,v 1.6 2013/02/14 09:24:50 matt Exp $");
+__RCSID("$NetBSD: s_fma.c,v 1.7 2017/05/06 18:02:52 christos Exp $");
 #endif
 
+#include "namespace.h"
+
 #include <machine/ieee.h>
 #include <fenv.h>
 #include <float.h>
diff -r bdcfd558b857 -r 07cc09cdba4f lib/libm/src/s_fmaf.c
--- a/lib/libm/src/s_fmaf.c     Sat May 06 13:05:59 2017 +0000
+++ b/lib/libm/src/s_fmaf.c     Sat May 06 18:02:52 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: s_fmaf.c,v 1.2 2013/02/11 01:29:58 christos Exp $      */
+/*     $NetBSD: s_fmaf.c,v 1.3 2017/05/06 18:02:52 christos Exp $      */
 
 /*-
  * Copyright (c) 2005-2011 David Schultz <das%FreeBSD.ORG@localhost>
@@ -30,9 +30,11 @@
 #if 0
 __FBSDID("$FreeBSD: src/lib/msun/src/s_fmaf.c,v 1.3 2011/10/15 04:16:58 das Exp $");
 #else
-__RCSID("$NetBSD: s_fmaf.c,v 1.2 2013/02/11 01:29:58 christos Exp $");
+__RCSID("$NetBSD: s_fmaf.c,v 1.3 2017/05/06 18:02:52 christos Exp $");
 #endif
 
+#include "namespace.h"
+
 #include <fenv.h>
 
 #include "math.h"
diff -r bdcfd558b857 -r 07cc09cdba4f lib/libm/src/s_fmal.c
--- a/lib/libm/src/s_fmal.c     Sat May 06 13:05:59 2017 +0000
+++ b/lib/libm/src/s_fmal.c     Sat May 06 18:02:52 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: s_fmal.c,v 1.3 2013/02/12 21:40:19 martin Exp $        */
+/*     $NetBSD: s_fmal.c,v 1.4 2017/05/06 18:02:52 christos Exp $      */
 
 /*-
  * Copyright (c) 2005-2011 David Schultz <das%FreeBSD.ORG@localhost>
@@ -30,9 +30,11 @@
 #if 0
 __FBSDID("$FreeBSD: src/lib/msun/src/s_fmal.c,v 1.7 2011/10/21 06:30:43 das Exp $");
 #else
-__RCSID("$NetBSD: s_fmal.c,v 1.3 2013/02/12 21:40:19 martin Exp $");
+__RCSID("$NetBSD: s_fmal.c,v 1.4 2017/05/06 18:02:52 christos Exp $");
 #endif
 
+#include "namespace.h"
+
 #include <machine/ieee.h>
 #include <fenv.h>
 #include <float.h>
diff -r bdcfd558b857 -r 07cc09cdba4f lib/libm/src/s_nearbyint.c
--- a/lib/libm/src/s_nearbyint.c        Sat May 06 13:05:59 2017 +0000
+++ b/lib/libm/src/s_nearbyint.c        Sat May 06 18:02:52 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: s_nearbyint.c,v 1.3 2013/02/11 02:45:27 christos Exp $ */
+/*     $NetBSD: s_nearbyint.c,v 1.4 2017/05/06 18:02:52 christos Exp $ */
 
 /*-
  * Copyright (c) 2004 David Schultz <das%FreeBSD.ORG@localhost>
@@ -30,9 +30,11 @@
 #if 0
 __FBSDID("$FreeBSD: src/lib/msun/src/s_nearbyint.c,v 1.2 2008/01/14 02:12:06 das Exp $");
 #else
-__RCSID("$NetBSD: s_nearbyint.c,v 1.3 2013/02/11 02:45:27 christos Exp $");
+__RCSID("$NetBSD: s_nearbyint.c,v 1.4 2017/05/06 18:02:52 christos Exp $");
 #endif
 
+#include "namespace.h"
+
 #include <machine/ieee.h>
 #include <fenv.h>
 #include <math.h>



Home | Main Index | Thread Index | Old Index