$allocate static method
Implementation
static ffi.Pointer<protoent> $allocate(
ffi.Allocator $allocator, {
required ffi.Pointer<ffi.Char> p_name,
required ffi.Pointer<ffi.Pointer<ffi.Char>> p_aliases,
required int p_proto,
}) => $allocator<protoent>()
..ref.p_name = p_name
..ref.p_aliases = p_aliases
..ref.p_proto = p_proto;