Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
226d79eb4a776dd54c9e4544b17deaf928bcef3a
/
.
/
Include
/
modsupport.h
blob: d406bf60d5cfd503e80836e73034ecf908b92d02 [
file
] [
log
] [
blame
]
/* Module support interface */
struct
methodlist
{
char
*
ml_name
;
method ml_meth
;
};
extern
object
*
findmethod PROTO
((
struct
methodlist
*,
object
*,
char
*));
extern
object
*
initmodule PROTO
((
char
*,
struct
methodlist
*));