Source-Changes-HG archive

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

[src/trunk]: src/lib/libm/compat Drop superfluous ; in __warn_references



details:   https://anonhg.NetBSD.org/src/rev/e3f926bd977f
branches:  trunk
changeset: 823882:e3f926bd977f
user:      maya <maya%NetBSD.org@localhost>
date:      Sat May 13 02:58:03 2017 +0000

description:
Drop superfluous ; in __warn_references

diffstat:

 lib/libm/compat/compat_cabs.c  |  4 ++--
 lib/libm/compat/compat_cabsf.c |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (42 lines):

diff -r 063d09efa24b -r e3f926bd977f lib/libm/compat/compat_cabs.c
--- a/lib/libm/compat/compat_cabs.c     Fri May 12 21:14:47 2017 +0000
+++ b/lib/libm/compat/compat_cabs.c     Sat May 13 02:58:03 2017 +0000
@@ -7,7 +7,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBM_SCCS) && !defined(lint)
-__RCSID("$NetBSD: compat_cabs.c,v 1.2 2007/08/10 21:20:35 drochner Exp $");
+__RCSID("$NetBSD: compat_cabs.c,v 1.3 2017/05/13 02:58:03 maya Exp $");
 #endif
 
 #include "../src/namespace.h"
@@ -19,7 +19,7 @@
 };
 
 double cabs(struct complex);
-__warn_references(cabs, "warning: reference to compatibility cabs()");
+__warn_references(cabs, "warning: reference to compatibility cabs()")
 
 double
 cabs(struct complex z)
diff -r 063d09efa24b -r e3f926bd977f lib/libm/compat/compat_cabsf.c
--- a/lib/libm/compat/compat_cabsf.c    Fri May 12 21:14:47 2017 +0000
+++ b/lib/libm/compat/compat_cabsf.c    Sat May 13 02:58:03 2017 +0000
@@ -7,7 +7,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBM_SCCS) && !defined(lint)
-__RCSID("$NetBSD: compat_cabsf.c,v 1.2 2007/08/10 21:20:35 drochner Exp $");
+__RCSID("$NetBSD: compat_cabsf.c,v 1.3 2017/05/13 02:58:03 maya Exp $");
 #endif
 
 #include "../src/namespace.h"
@@ -19,7 +19,7 @@
 };
 
 float cabsf __P((struct complex));
-__warn_references(cabsf, "warning: reference to compatibility cabsf()");
+__warn_references(cabsf, "warning: reference to compatibility cabsf()")
 
 float
 cabsf(struct complex z)



Home | Main Index | Thread Index | Old Index