blob: 3b3525244c907df8f5aeae0f1268d0c34ffdda51 (
plain)
1
2
3
4
5
6
7
8
9
|
/* NB: Don't define MINSIGSTKSZ nor SIGSTKSZ to sysconf (SC_SIGSTKSZ) for
glibc build. IS_IN can only be used when _ISOMAC isn't defined. */
#ifdef _ISOMAC
# include_next <bits/sigstksz.h>
#else
# if IS_IN (libsupport)
# include_next <bits/sigstksz.h>
# endif
#endif
|