Changeset 10 for python/trunk/Modules/fcntlmodule.c
- Timestamp:
- Sep 3, 2010, 5:33:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk/Modules/fcntlmodule.c
r2 r10 316 316 return NULL; 317 317 318 #if defined(PYOS_OS2) && defined(PYCC_GCC) 318 #if defined(PYOS_OS2) && defined(PYCC_GCC) && !defined(__KLIBC__) 319 319 PyErr_SetString(PyExc_NotImplementedError, 320 320 "lockf not supported on OS/2 (EMX)"); … … 374 374 Py_INCREF(Py_None); 375 375 return Py_None; 376 #endif /* defined(PYOS_OS2) && defined(PYCC_GCC) */376 #endif /* defined(PYOS_OS2) && defined(PYCC_GCC) && !defined(__KLIBC__)*/ 377 377 } 378 378
Note:
See TracChangeset
for help on using the changeset viewer.