1#ifndef LIBC_H
2#define LIBC_H
3
4#include <stdlib.h>
5#include <stdio.h>
6#include <limits.h>
7
8struct __locale_map;
9
10struct __locale_struct {
11	const struct __locale_map *cat[6];
12};
13
14#define __NEED_locale_t
15#include <bits/alltypes.h>
16
17
18
19#endif
20