You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
435 B
24 lines
435 B
#ifndef SYSROOT_MONETARY_H_
|
|
#define SYSROOT_MONETARY_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <features.h>
|
|
|
|
#define __NEED_ssize_t
|
|
#define __NEED_size_t
|
|
#define __NEED_locale_t
|
|
|
|
#include <bits/alltypes.h>
|
|
|
|
ssize_t strfmon(char* __restrict, size_t, const char* __restrict, ...);
|
|
ssize_t strfmon_l(char* __restrict, size_t, locale_t, const char* __restrict, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // SYSROOT_MONETARY_H_
|