mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 11:00:04 +08:00
15 lines
188 B
C
15 lines
188 B
C
|
#ifndef _SIGSTACK_H
|
||
|
|
||
|
#define _SIGSTACK_H
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
typedef struct sigaltstack
|
||
|
{
|
||
|
void *ss_sp;
|
||
|
int ss_flags;
|
||
|
size_t ss_size;
|
||
|
} stack_t;
|
||
|
|
||
|
#endif /* _SIGSTACK_H */
|