| OLD | NEW |
| 1 /* Decimal 32-bit format module header for the decNumber C Library. | 1 /* Decimal 32-bit format module header for the decNumber C Library. |
| 2 Copyright (C) 2005, 2007, 2009 Free Software Foundation, Inc. | 2 Copyright (C) 2005-2013 Free Software Foundation, Inc. |
| 3 Contributed by IBM Corporation. Author Mike Cowlishaw. | 3 Contributed by IBM Corporation. Author Mike Cowlishaw. |
| 4 | 4 |
| 5 This file is part of GCC. | 5 This file is part of GCC. |
| 6 | 6 |
| 7 GCC is free software; you can redistribute it and/or modify it under | 7 GCC is free software; you can redistribute it and/or modify it under |
| 8 the terms of the GNU General Public License as published by the Free | 8 the terms of the GNU General Public License as published by the Free |
| 9 Software Foundation; either version 3, or (at your option) any later | 9 Software Foundation; either version 3, or (at your option) any later |
| 10 version. | 10 version. |
| 11 | 11 |
| 12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY | 12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 93 |
| 94 /* Format-dependent utilities */ | 94 /* Format-dependent utilities */ |
| 95 uint32_t decimal32IsCanonical(const decimal32 *); | 95 uint32_t decimal32IsCanonical(const decimal32 *); |
| 96 decimal32 * decimal32Canonical(decimal32 *, const decimal32 *); | 96 decimal32 * decimal32Canonical(decimal32 *, const decimal32 *); |
| 97 | 97 |
| 98 #ifdef __cplusplus | 98 #ifdef __cplusplus |
| 99 } | 99 } |
| 100 #endif | 100 #endif |
| 101 | 101 |
| 102 #endif | 102 #endif |
| OLD | NEW |