about summary refs log tree commit diff
path: root/ports
diff options
context:
space:
mode:
Diffstat (limited to 'ports')
-rw-r--r--ports/ChangeLog.powerpc5
-rw-r--r--ports/sysdeps/powerpc/nofpu/fgetexcptflg.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/ports/ChangeLog.powerpc b/ports/ChangeLog.powerpc
index cd7afb204e..3233b2c76c 100644
--- a/ports/ChangeLog.powerpc
+++ b/ports/ChangeLog.powerpc
@@ -1,3 +1,8 @@
+2012-12-05  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/powerpc/nofpu/fgetexcptflg.c (__fegetexceptflag):
+	Specify return type as int.
+
 2012-11-30  Joseph Myers  <joseph@codesourcery.com>
 
 	* sysdeps/powerpc/nofpu/libm-test-ulps: Remove fma ulps.
diff --git a/ports/sysdeps/powerpc/nofpu/fgetexcptflg.c b/ports/sysdeps/powerpc/nofpu/fgetexcptflg.c
index 36b9b76986..6b00ee0dcd 100644
--- a/ports/sysdeps/powerpc/nofpu/fgetexcptflg.c
+++ b/ports/sysdeps/powerpc/nofpu/fgetexcptflg.c
@@ -1,5 +1,5 @@
 /* Store current representation for exceptions (soft-float edition).
-   Copyright (C) 2002 Free Software Foundation, Inc.
+   Copyright (C) 2002-2012 Free Software Foundation, Inc.
    Contributed by Aldy Hernandez <aldyh@redhat.com>, 2002.
    This file is part of the GNU C Library.
 
@@ -21,6 +21,7 @@
 #include "soft-supp.h"
 #include <bp-sym.h>
 
+int
 __fegetexceptflag (fexcept_t *flagp, int excepts)
 {
   *flagp = (fexcept_t) __sim_exceptions  & excepts & FE_ALL_EXCEPT;