0ad/source/lib/sysdep/unix/udbg.h
janwas cb74250a51 - moved assert2 to sysdep/debug.h
- sysdep/debug.h includes platform-specific version, so they can define
debug_break
- no longer a debug_break wrapper that calls to specific versions (so
that the debugger breaks in the target function directly)
- unix-specific stuff is only debug ATM; call it udbg instead of unix.*

This was SVN commit r1813.
2005-01-25 18:27:00 +00:00

11 lines
227 B
C

// sysdep/unix/debug.h: included from sysdep/debug.h and sysdep/unix/debug.cpp
#ifndef UDBG_H__
#define UDBG_H__
#define debug_break unix_debug_break
extern void unix_debug_break(void);
#endif // #ifndef UDBG_H__