Sign in
android
/
platform
/
external
/
pytorch
/
5b75b19f51
/
.
/
torch
/
csrc
/
utils
/
pycfunction_helpers.h
blob: fa1016f9a7e786954a953eb4bd87046e4511b36c [
file
] [
log
] [
blame
]
#pragma
once
#include
<Python.h>
inline
PyCFunction
castPyCFunctionWithKeywords
(
PyCFunctionWithKeywords
func
)
{
// NOLINTNEXTLINE(modernize-redundant-void-arg)
return
(
PyCFunction
)(
void
(*)(
void
))
func
;
}