1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
/*
FALCON - The Falcon Programming Language.
FILE: trace.cpp
Debug trace utility.
-------------------------------------------------------------------
Author: Giancarlo Niccolai
Begin: Sat, 18 Jul 2009 14:07:01 +0200
-------------------------------------------------------------------
(C) Copyright 2009: the FALCON developers (see list in AUTHORS file)
See LICENSE file for licensing details.
*/
#ifndef NDEBUG
#include <falcon/trace.h>
extern "C" {
FALCON_DYN_SYM FILE* _falcon_trace_fp = 0;
}
#endif
/* end of trace.cpp */
|