blob: b71c9fc00eff8872e2aef3063ef36984459eaf3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __BITS_SIGNAL_H
#define __BITS_SIGNAL_H
#ifndef __SIGNAL_H
#error "Never include <bits/signal.h> directly; use <signal.h> instead."
#endif
#define SIGSTKSZ 8192
#define MINSIGSTKSZ 2048
#endif
|