dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / lib / libast / common / features / wait
blob74c8c8119aad2a17f943bc587d21a776033a0dc1
1 lib wait,wait2,wait3,wait4,waitpid
2 tst ok_wif sys/types.h sys/wait.h note{ posix wait macros ok }end compile{
3         int     ifexited = WIFEXITED(0);
4         int     exitstatus = WEXITSTATUS(0);
5         int     ifsignaled = WIFSIGNALED(0);
6         int     termsig = WTERMSIG(0);
7         int     ifstopped = WIFSTOPPED(0);
8         int     stopsig = WSTOPSIG(0);
9 }end