]> Creatis software - gdcm.git/blob - gdcmTestFUNCTION.cxx
ENH: blind shot to fix problem
[gdcm.git] / gdcmTestFUNCTION.cxx
1 // Minimal test for existence of __FUNCTION__ pseudo-macro
2 #include <string.h>
3
4 int TestFUNCTION()
5 {
6   const char *f = __FUNCTION__;
7   int r = strcmp( "TestFUNCTION", f);
8   return r;
9 }
10  
11 int main()
12 {
13   return TestFUNCTION();
14 }
15