repo.or.cz
/
wmiirc-lua.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
start all programs with wmiir setsid
[wmiirc-lua.git]
/
luaixp
/
lixp_debug.h
blob
2ef83f4902d8b06babd7da31b7028f5c3d2fc9e0
1
#ifndef __LUAIXP_DEBUG_H__
2
#define __LUAIXP_DEBUG_H__
3
4
#include <lua.h>
5
6
#ifdef DBG
7
#define DBGF(fmt,args...) fprintf(stderr,fmt,##args)
8
#else
9
#define DBGF(fmt,args...) ({})
10
#endif
11
12
extern
void
l_stack_dump
(
lua_State
*
l
);
13
14
#endif
// __LUAIXP_DEBUG_H__