Update to 2.0.0 tree from current Fremantle build
[opencv] / apps / cvenv / EiC / assertp.h
diff --git a/apps/cvenv/EiC/assertp.h b/apps/cvenv/EiC/assertp.h
deleted file mode 100644 (file)
index 025f19a..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-
-void abort(void);
-
-#ifndef NDEBUG
-
-#define assertandpause(p, args)        if(p){fprintf(stderr,\
-               "ASSERT : %s, At line %d in file %s.\n",\
-               #p, __LINE__,__FILE__);\
-               printf args;\
-               fprintf(stderr,"<Key to continue>");\
-               getchar();}
-
-
-
-#define assertp(p, args)       if(p){\
-               fprintf(stderr,\
-               "ASSERT : %s, At line %d in file %s.\nCalled From: ",\
-               #p, __LINE__,__FILE__);\
-               printf args; abort();}
-
-#else
-#define assertandpause(p, args)
-#define assertp(p, args)
-#endif