config.h.in
changeset 5 e617c9cf6dd3
child 6 90073cbb535d
equal deleted inserted replaced
4:5770be2d5f3f 5:e617c9cf6dd3
       
     1 
       
     2 #ifndef LLM_CONFIG_H
       
     3 #define LLM_CONFIG_H
       
     4 
       
     5 // define this to enable debugging output
       
     6 #cmakedefine DEBUG
       
     7 
       
     8 #ifdef DEBUG
       
     9 #include <stdio.h>
       
    10 #define D(FORMAT...) { fprintf ( stderr, FORMAT ); }
       
    11 #else
       
    12 #define D(FORMAT...) { /* FORMAT */ }
       
    13 #endif
       
    14 
       
    15 #endif
       
    16