| 1 | #include <stdlib/monetary.h> |
| 2 | #ifndef _ISOMAC |
| 3 | #include <stdarg.h> |
| 4 | |
| 5 | extern ssize_t |
| 6 | __vstrfmon_l_internal (char *s, size_t maxsize, locale_t loc, |
| 7 | const char *format, va_list ap, |
| 8 | unsigned int flags) |
| 9 | attribute_hidden; |
| 10 | |
| 11 | /* Flags for __vstrfmon_l_internal. |
| 12 | |
| 13 | STRFMON_LDBL_IS_DBL is a one-bit mask for the flags parameter that |
| 14 | indicates whether long double values are to be handled as having the |
| 15 | same format as double, in which case the flag should be set to one, |
| 16 | or as another format, otherwise. */ |
| 17 | #define STRFMON_LDBL_IS_DBL 0x0001 |
| 18 | |
| 19 | #endif |
| 20 | |