assert.c
资源名称:c.rar [点击查看]
上传用户:shmaik
上传日期:2014-06-01
资源大小:45093k
文件大小:0k
源码类别:

VC书籍

开发平台:

C/C++

  1. static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/except.doc,v 1.10 1997/02/21 19:43:55 drh Exp $";
  2. #include "assert.h"
  3. const Except_T Assert_Failed = { "Assertion failed" };
  4. void (assert)(int e) {
  5. assert(e);
  6. }