| 253 | static const char* const SCRATCH = "fb_query_"; |
| 254 | |
| 255 | inline void STDERROUT(const char* st, bool cr = true) |
| 256 | { |
| 257 | fprintf (isqlGlob.Errfp, "%s", st); |
| 258 | if (cr) |
| 259 | fprintf (isqlGlob.Errfp, "\n"); |
| 260 | fflush (isqlGlob.Errfp); |
| 261 | } |
| 262 | |
| 263 | #ifdef DEBUG_GDS_ALLOC |
| 264 | #define ISQL_ALLOC(x) gds__alloc_debug(x, __FILE__, __LINE__) |
no test coverage detected