mirror of
https://github.com/ziglang/zig.git
synced 2025-12-07 23:03:08 +00:00
12 lines
278 B
C
Vendored
12 lines
278 B
C
Vendored
/* Architecture-specific additional siginfo constants. SPARC version. */
|
|
#ifndef _BITS_SIGINFO_CONSTS_ARCH_H
|
|
#define _BITS_SIGINFO_CONSTS_ARCH_H 1
|
|
|
|
/* `si_code' values for SIGEMT signal. */
|
|
enum
|
|
{
|
|
EMT_TAGOVF = 1 /* Tag overflow. */
|
|
#define EMT_TAGOVF EMT_TAGOVF
|
|
};
|
|
|
|
#endif |