Sign in
android
/
platform
/
external
/
pytorch
/
refs/heads/sdk-release
/
.
/
torch
/
csrc
/
stub.c
blob: fb132203fb80a8db1765346e5e9318d6429dbb86 [
file
] [
log
] [
blame
] [
edit
]
#include
<Python.h>
extern
PyObject
*
initModule
(
void
);
#ifndef
_WIN32
#ifdef
__cplusplus
extern
"C"
#endif
__attribute__
((
visibility
(
"default"
)))
PyObject
*
PyInit__C
(
void
);
#endif
PyMODINIT_FUNC
PyInit__C
(
void
)
{
return
initModule
();
}