X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/460b9539a7c15580e41a71bbc0f47ae776238915..db86b8ed9c69525f740024d0a11308716148eec0:/lib/wstat.c diff --git a/lib/wstat.c b/lib/wstat.c index bd387ff..0fd124c 100644 --- a/lib/wstat.c +++ b/lib/wstat.c @@ -17,6 +17,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA */ +/** @file lib/wstat.c + * @brief Convert wait status to text + */ #include @@ -30,6 +33,10 @@ #include "wstat.h" #include "printf.h" +/** @brief Convert exit status to text + * @param w Exit status (e.g. from waitpid()) + * @return Allocated string containing description of status + */ const char *wstat(int w) { int n; char *r; @@ -55,4 +62,3 @@ c-basic-offset:2 comment-column:40 End: */ -/* arch-tag:266c61bd39bdfb327908ad3dd95412ae */