authwait.h
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. #ifndef authwait_h
  2. #define authwait_h
  3. /*
  4. ** Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
  5. ** distribution information.
  6. */
  7. #if HAVE_CONFIG_H
  8. #include "config.h"
  9. #endif
  10. static const char authwait_h_rcsid[]="$Id: authwait.h,v 1.2 1999/12/06 13:12:28 mrsam Exp $";
  11. #include <sys/types.h>
  12. #if HAVE_SYS_WAIT_H
  13. #include <sys/wait.h>
  14. #endif
  15. #ifndef WEXITSTATUS
  16. #define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
  17. #endif
  18. #ifndef WIFEXITED
  19. #define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
  20. #endif
  21. #endif