alloca method

Pointer<Void> alloca(
  1. int arg0
)

Implementation

ffi.Pointer<ffi.Void> alloca(
  int arg0,
) {
  return _alloca(
    arg0,
  );
}