repo.or.cz
/
rbx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added spec:commit task to commit changes to spec/ruby sources.
[rbx.git]
/
shotgun
/
lib
/
methtbl.c
blob
ccc450aee9ccf5bf503a032624f93ba644c78370
1
#include
"shotgun/lib/shotgun.h"
2
#include
"shotgun/lib/lookuptable.h"
3
4
OBJECT
methtbl_new
(
STATE
) {
5
OBJECT obj
;
6
7
obj
=
methtbl_allocate
(
state
);
8
lookuptable_setup
(
state
,
obj
,
0
);
9
return
obj
;
10
}