#ifndef __PTRACE_H__
#define __PTRACE_H__ 1

// i77 run-time tracing facility, intended to be enabled by compiling with i77 --trace
// This is *not* the backtrace mechanism, it's more like a subset of profiling but
// without the stats.  Which may be added later.

extern int _imp_trace_enter(int line, char *file, char *funcname);
extern int _imp_trace_exit(int line, char *file, char *funcname);

#endif
