projects
/
supertux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fixed warnings in squirrel
[supertux.git]
/
src
/
squirrel
/
include
/
sqstdaux.h
1
/* see copyright notice in squirrel.h */
2
#ifndef _SQSTD_AUXLIB_H_
3
#define _SQSTD_AUXLIB_H_
4
5
#ifdef __cplusplus
6
extern "C" {
7
#endif
8
9
SQUIRREL_API void sqstd_seterrorhandlers(HSQUIRRELVM v);
10
SQUIRREL_API void sqstd_printcallstack(HSQUIRRELVM v);
11
12
#ifdef __cplusplus
13
} /*extern "C"*/
14
#endif
15
16
#endif /* _SQSTD_AUXLIB_H_ */