clearErrno function

void clearErrno()

Clear the errno by setting it to 0. You should do this before calling a function that may set errno.

Implementation

void clearErrno() => setErrno(0);