1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
Patch by khendricks@ivey.uwo.ca [libc/1382].
This commit is contained in:
Ulrich Drepper
1999-10-09 21:56:43 +00:00
parent a4a1492eb9
commit c1422e5b7c
113 changed files with 2924 additions and 2968 deletions

View File

@ -36,16 +36,16 @@ typedef __ssize_t ssize_t;
__BEGIN_DECLS
/* Formatting a monetary value according to the current locale. */
extern ssize_t strfmon __P ((char *__restrict __s, size_t __maxsize,
__const char *__restrict __format, ...));
extern ssize_t strfmon (char *__restrict __s, size_t __maxsize,
__const char *__restrict __format, ...) __THROW;
#ifdef __USE_GNU
# include <xlocale.h>
/* Formatting a monetary value according to the current locale. */
extern ssize_t __strfmon_l __P ((char *__restrict __s, size_t __maxsize,
__locale_t loc,
__const char *__restrict __format, ...));
extern ssize_t __strfmon_l (char *__restrict __s, size_t __maxsize,
__locale_t loc,
__const char *__restrict __format, ...) __THROW;
#endif
__END_DECLS