error.hh
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:0k
- /*
- File: error.hh
- Description:
- By: Alex Theo de Jong
- Created: September 1995
- */
- #ifndef __error_hh__
- #define __error_hh__
- #define MAX_LEX_ERR 10
- #define msg(s){ printf(s); fflush(stdout); }
- #define message(s){ cout << s << "n"; cout.flush(); }
- // fflush(stdout); }
- #define warning(s) { printf("warning - %sn", s); }
- // fflush(stdout); }
- #define error(s) { cerr << s << "n"; cerr.flush(); }
- // printf("error - %sn", s); fflush(stdout); }
- #endif