Menu

#513 strerror_r isn't implemented

v1.0 (example)
open-accepted
nobody
None
5
2015-11-21
2015-11-21
No

strerror_r isn't implemented.

Possible implementation...

int strerror_r(int errnum, char *buf, size_t buflen) {

  return strerror_s(buf, buflen, errnum);

}

Discussion

  • Kai Tietz

    Kai Tietz - 2015-11-21
    • status: open --> open-accepted
     
  • Kai Tietz

    Kai Tietz - 2015-11-21

    Well, I would vote for an implemenation in the same way as we provide some other of the .._r functionalities to our runtime. Patch for this are welcome on our ML.

     

Log in to post a comment.