Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: libdecnumber/decNumber.h

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « libdecnumber/decLibrary.c ('k') | libdecnumber/decNumber.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Decimal number arithmetic module header for the decNumber C Library. 1 /* Decimal number arithmetic 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 #define decNumberIsZero(dn) (*(dn)->lsu==0 \ 194 #define decNumberIsZero(dn) (*(dn)->lsu==0 \
195 && (dn)->digits==1 \ 195 && (dn)->digits==1 \
196 && (((dn)->bits&DECSPECIAL)==0)) 196 && (((dn)->bits&DECSPECIAL)==0))
197 #define decNumberRadix(dn) (10) 197 #define decNumberRadix(dn) (10)
198 198
199 #ifdef __cplusplus 199 #ifdef __cplusplus
200 } 200 }
201 #endif 201 #endif
202 202
203 #endif 203 #endif
OLDNEW
« no previous file with comments | « libdecnumber/decLibrary.c ('k') | libdecnumber/decNumber.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698