Dont use XSLT_LIBS. It is already part of YAZ' libs output
[yazproxy-moved-to-github.git] / src / cdetails.cpp
1 #include <stdlib.h>
2 #include <stdio.h>
3
4 #if HAVE_USEMARCON
5 #include <objectlist.h>
6
7 CDetails *x(CDetails *p)
8 {
9     return p;
10 }
11 #endif
12
13 int main(int argc, char **argv)
14 {
15 #if HAVE_USEMARCON
16     CDetails local;
17     CDetails *ptr = new CDetails();
18
19     x(&local);
20     x(ptr);
21
22     delete ptr;
23 #endif
24     exit(0);
25 }
26 /*
27  * Local variables:
28  * c-basic-offset: 4
29  * indent-tabs-mode: nil
30  * End:
31  * vim: shiftwidth=4 tabstop=8 expandtab
32  */
33