Repository URL to install this package:
Version:
9.0~241217-1.fc41 ▾
|
//----------------------------------------------------------------------
inline int get_system_specific_errno()
{
// this code must be acceptable by winerr()
#ifdef __NT__
return GetLastError();
#else
return errno;
#endif
}