/usr/lib/avr/include/locale.h is in avr-libc 1:2.0.0+Atmel3.6.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #ifndef _LOCALE_H
#define _LOCALE_H
#if 1 /* ??? unimplemented */
#define LC_ALL 0
#define LC_COLLATE 1
#define LC_CTYPE 2
#define LC_MESSAGES 3
#define LC_MONETARY 4
#define LC_NUMERIC 5
#define LC_TIME 6
struct lconv;
extern char *setlocale(int category, const char *locale);
extern struct lconv *localeconv(void);
#endif
#endif /* L_OCALE_H */
|