| author | "Tomas Zeman <tzeman@volny.cz>" |
| Sun, 20 Jan 2008 00:22:09 +0100 | |
| changeset 2 | b3afb9f1e801 |
| parent 0 | 6f7a81934006 |
| permissions | -rw-r--r-- |
| 2 | 1 |
/* $Id: wait.h 616 2005-08-19 20:11:01Z bruce $ */ |
| 0 | 2 |
#include <sys/types.h> |
3 |
#if HAVE_SYS_WAIT_H |
|
4 |
# include <sys/wait.h> |
|
5 |
#endif |
|
6 |
#ifndef WEXITSTATUS |
|
7 |
# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8) |
|
8 |
#endif |
|
9 |
#ifndef WIFEXITED |
|
10 |
# define WIFEXITED(stat_val) (((stat_val) & 255) == 0) |
|
11 |
#endif |