|
Lines 230-244
const char * scheck(const char * string, const char * format);
Link Here
|
| 230 |
#define TYPE_INTEGRAL(type) (((type) 0.5) != 0.5) |
230 |
#define TYPE_INTEGRAL(type) (((type) 0.5) != 0.5) |
| 231 |
#endif /* !defined TYPE_INTEGRAL */ |
231 |
#endif /* !defined TYPE_INTEGRAL */ |
| 232 |
|
232 |
|
| 233 |
/* |
|
|
| 234 |
** Since the definition of TYPE_INTEGRAL contains floating point numbers, |
| 235 |
** it cannot be used in preprocessor directives. |
| 236 |
*/ |
| 237 |
|
| 238 |
#ifndef TYPE_INTEGRAL |
| 239 |
#define TYPE_INTEGRAL(type) (((type) 0.5) != 0.5) |
| 240 |
#endif /* !defined TYPE_INTEGRAL */ |
| 241 |
|
| 242 |
#ifndef INT_STRLEN_MAXIMUM |
233 |
#ifndef INT_STRLEN_MAXIMUM |
| 243 |
/* |
234 |
/* |
| 244 |
** 302 / 1000 is log10(2.0) rounded up. |
235 |
** 302 / 1000 is log10(2.0) rounded up. |