mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Remove pre-ISO C support
No more __const.
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/* Header file for monetary value formatting functions.
|
||||
Copyright (C) 1996,1997,1998,1999,2000,2002,2006,2009
|
||||
Copyright (C) 1996,1997,1998,1999,2000,2002,2006,2009,2012
|
||||
Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
@ -38,7 +38,7 @@ __BEGIN_DECLS
|
||||
|
||||
/* Formatting a monetary value according to the current locale. */
|
||||
extern ssize_t strfmon (char *__restrict __s, size_t __maxsize,
|
||||
__const char *__restrict __format, ...)
|
||||
const char *__restrict __format, ...)
|
||||
__THROW __attribute_format_strfmon__ (3, 4);
|
||||
|
||||
#ifdef __USE_XOPEN2K8
|
||||
@ -47,7 +47,7 @@ extern ssize_t strfmon (char *__restrict __s, size_t __maxsize,
|
||||
/* Formatting a monetary value according to the current locale. */
|
||||
extern ssize_t strfmon_l (char *__restrict __s, size_t __maxsize,
|
||||
__locale_t __loc,
|
||||
__const char *__restrict __format, ...)
|
||||
const char *__restrict __format, ...)
|
||||
__THROW __attribute_format_strfmon__ (4, 5);
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user