summaryrefslogtreecommitdiffstats
path: root/payloads/libpayload/include/wchar.h
blob: 9c79b892a3d5ee7315081746899f3e964c27a0f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _WCHAR_H
#define _WCHAR_H

#include <stddef.h>

#ifndef __WINT_TYPE__
# define __WINT_TYPE__ unsigned int
#endif
typedef __WINT_TYPE__ wint_t;

#endif