strerror method

Pointer<Char> strerror(
  1. int __errnum
)

Implementation

ffi.Pointer<ffi.Char> strerror(
  int __errnum,
) {
  return _strerror(
    __errnum,
  );
}