mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
bb06230f1e
These symbols belong to the user. It caused a confusing error for Blink.
11 lines
466 B
C
11 lines
466 B
C
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGALTSTACK_INTERNAL_H_
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGALTSTACK_INTERNAL_H_
|
|
#include "libc/calls/struct/sigaltstack.h"
|
|
#include "libc/mem/alloca.h"
|
|
COSMOPOLITAN_C_START_
|
|
|
|
const char *_DescribeSigaltstack(char[128], int, const struct sigaltstack *);
|
|
#define DescribeSigaltstack(rc, ss) _DescribeSigaltstack(alloca(128), rc, ss)
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGALTSTACK_INTERNAL_H_ */
|