Back to home page

Enduro/X

 
 

    


0001 /* include this header when using the __func__ macro
0002  * this is where platforms that don't have C99 __func__ will be handled
0003  */
0004 #ifndef __func__
0005 #  ifdef _MSC_VER
0006 #    define __func__ __FUNCTION__
0007 #  endif
0008 #endif