alloca method

Pointer<Void> alloca(
  1. int __size
)

Implementation

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