Mercurial > hg > Applications > Grep
view regexParser/error.cc @ 235:4aab1e93a971
fix condition grepWalk.cc
author | Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 19 Jan 2016 17:16:37 +0900 |
parents | ecf70fb215a5 |
children |
line wrap: on
line source
#include <stdio.h> #include <stdlib.h> void errorMassege(const char* ers,int lineNum,const char* filename) { fprintf(stderr, "%s:%d: error: %s\n",filename,lineNum,ers); exit(-1); }