flush
[m6w6/ext-psi] / psi.d / string.psi
1 extern char *strerror(int errno);
2 function psi\strerror(int $errno) : string {
3 let errno = intval($errno);
4 return to_string(strerror);
5 }