Files
phs_v1.0.1.0/third_party/musl/ndk_musl_include/ucontext.h

21 lines
285 B
C
Raw Normal View History

2024-09-27 19:21:56 +08:00
#ifndef _UCONTEXT_H
#define _UCONTEXT_H
#ifdef __cplusplus
extern "C" {
#endif
#include <features.h>
#include <signal.h>
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
#define NGREG (sizeof(gregset_t)/sizeof(greg_t))
#endif
struct __ucontext;
#ifdef __cplusplus
}
#endif
#endif