Mercurial > hg > xemacs-beta
comparison src/syswait.h @ 169:15872534500d r20-3b11
Import from CVS: tag r20-3b11
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:46:53 +0200 |
parents | 43dd3413c7c7 |
children | 74fd4e045ea6 |
comparison
equal
deleted
inserted
replaced
168:9851d5c6556e | 169:15872534500d |
---|---|
46 #define WTERMSIG(s) ((s) & 0x7f) | 46 #define WTERMSIG(s) ((s) & 0x7f) |
47 #endif | 47 #endif |
48 #ifndef WSTOPSIG | 48 #ifndef WSTOPSIG |
49 #define WSTOPSIG(s) ((s) >> 8) | 49 #define WSTOPSIG(s) ((s) >> 8) |
50 #endif | 50 #endif |
51 #ifndef WRETCODE | |
52 #define WRETCODE(s) ((s) >> 8) | |
53 #endif | |
54 |