repo.or.cz
/
canaan.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
convert line ends
[canaan.git]
/
prj
/
tech
/
libsrc
/
matrix
/
_test.h
blob
d9e223efc9721d02935a9e50c5d13563afdf8be5
1
// $Header: x:/prj/tech/libsrc/matrix/RCS/_test.h 1.1 1996/09/23 10:33:24 JAEMZ Exp $
2
3
#ifndef ___TEST_H
4
#define ___TEST_H
5
6
#include <lg.h>
7
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
19
20
#endif
21
22