mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
add missing declaration of wint_t
This commit is contained in:
parent
8a77d46550
commit
73a5ae0c11
1 changed files with 5 additions and 0 deletions
|
@ -87,6 +87,11 @@ typedef char int8_t;
|
|||
/// 16 bit wide char type
|
||||
typedef unsigned short wchar_t;
|
||||
|
||||
#ifndef _WINT_T
|
||||
#define _WINT_T
|
||||
typedef wchar_t wint_t;
|
||||
#endif
|
||||
|
||||
/// This defines what the stack looks like after the task context is saved.
|
||||
struct state {
|
||||
/// R15 register
|
||||
|
|
Loading…
Add table
Reference in a new issue