X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/3d38277706a5155d57563d1221e7233d8159470a..a20aa42ac40f04d2fd7d9cbee3cb55d5cd57d96b:/rsync.h diff --git a/rsync.h b/rsync.h index 0742d431..588219fe 100644 --- a/rsync.h +++ b/rsync.h @@ -510,4 +510,8 @@ size_t strlcpy(char *d, const char *s, size_t bufsize); size_t strlcat(char *d, const char *s, size_t bufsize); #endif +#ifndef WEXITSTATUS +#define WEXITSTATUS(stat) ((int)(((stat)>>8)&0xFF)) +#endif + #define exit_cleanup(code) _exit_cleanup(code, __FILE__, __LINE__)