convert line ends
[canaan.git] / prj / tech / libsrc / matrix / _test.h
blobd9e223efc9721d02935a9e50c5d13563afdf8be5
1 // $Header: x:/prj/tech/libsrc/matrix/RCS/_test.h 1.1 1996/09/23 10:33:24 JAEMZ Exp $
3 #ifndef ___TEST_H
4 #define ___TEST_H
6 #include <lg.h>
8 #ifdef DBG_ON
9 #define TEST_SRCDST(fname,dst,src) \
10 do { \
11 if ((src)==(dst)) { \
12 Warning(("mx: %s: src == dst, won't work.\n",fname)); \
13 return; \
14 } \
15 } while(0)
16 #else
17 #define TEST_SRCDST(fname,dst,src)
18 #endif
20 #endif