OSDN Git Service

libgfortran:
[pf3gnuchains/gcc-fork.git] / libdecnumber / decContext.h
index d011f4f..5252b33 100644 (file)
@@ -1,5 +1,5 @@
 /* Decimal Context module header for the decNumber C Library
-   Copyright (C) 2005 Free Software Foundation, Inc.
+   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
    Contributed by IBM Corporation.  Author Mike Cowlishaw.
 
    This file is part of GCC.
@@ -9,6 +9,15 @@
    Software Foundation; either version 2, or (at your option) any later
    version.
 
+   In addition to the permissions in the GNU General Public License,
+   the Free Software Foundation gives you unlimited permission to link
+   the compiled version of this file into combinations with other
+   programs, and to distribute those combinations without any
+   restriction coming from the use of this file.  (The General Public
+   License restrictions do apply in other respects; for example, they
+   cover modification of the file, and distribution when not linked
+   into a combine executable.)
+
    GCC is distributed in the hope that it will be useful, but WITHOUT ANY
    WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
@@ -16,8 +25,8 @@
 
    You should have received a copy of the GNU General Public License
    along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.  */
+   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.  */
 
 /* ------------------------------------------------------------------ */
 /*                                                                    */
@@ -40,7 +49,7 @@
 #define DECCFULLNAME "Decimal Context Descriptor"      /* Verbose name */
 #define DECCAUTHOR   "Mike Cowlishaw"  /* Who to blame */
 
-#include <stdint.h>            /* C99 standard integers */
+#include "gstdint.h"           /* C99 standard integers */
 #include <signal.h>            /* for traps */
 
 
@@ -172,7 +181,7 @@ typedef struct
 #endif
 decContext *decContextDefault (decContext *, int32_t);
 decContext *decContextSetStatus (decContext *, uint32_t);
-const char *decContextStatusToString (decContext *);
-decContext *decContextSetStatusFromString (decContext *, char *);
+const char *decContextStatusToString (const decContext *);
+decContext *decContextSetStatusFromString (decContext *, const char *);
 
 #endif