Windows: define errno_t on compilers older than 1400
[openafs.git] / src / config / afsconfig-windows.h
index b8e89c2..07a8953 100644 (file)
 
 /* Windows does not provide socklen_t prior to WDK 6.0 */
 #undef HAVE_SOCKLEN_T
+
+#if (_MSC_VER < 1400)
+typedef int errno_t;
+#endif