errexit.c
上传用户:wei_4586
上传日期:2008-05-28
资源大小:18k
文件大小:0k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* errexit.c - errexit */
  2. #include <stdarg.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. /*------------------------------------------------------------------------
  6.  * errexit - print an error message and exit
  7.  *------------------------------------------------------------------------
  8.  */
  9. int
  10. errexit(const char *format, ...)
  11. {
  12. va_list args;
  13. va_start(args, format);
  14. vfprintf(stderr, format, args);
  15. va_end(args);
  16. exit(1);
  17. }