2020-12-06 09:31:48 +00:00
|
|
|
#ifndef LIBUCONTEXT_BITS_H
|
|
|
|
#define LIBUCONTEXT_BITS_H
|
|
|
|
|
|
|
|
#ifndef FREESTANDING
|
|
|
|
|
|
|
|
#include <ucontext.h>
|
|
|
|
|
2020-12-06 09:40:55 +00:00
|
|
|
typedef greg_t libucontext_greg_t;
|
2020-12-06 09:31:48 +00:00
|
|
|
typedef ucontext_t libucontext_ucontext_t;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|