| LEFT | RIGHT |
| 1 | 1 |
| 2 /* POSIX module implementation */ | 2 /* POSIX module implementation */ |
| 3 | 3 |
| 4 /* This file is also used for Windows NT/MS-Win and OS/2. In that case the | 4 /* This file is also used for Windows NT/MS-Win and OS/2. In that case the |
| 5 module actually calls itself 'nt' or 'os2', not 'posix', and a few | 5 module actually calls itself 'nt' or 'os2', not 'posix', and a few |
| 6 functions are either unimplemented or implemented differently. The source | 6 functions are either unimplemented or implemented differently. The source |
| 7 assumes that for Windows NT, the macro 'MS_WINDOWS' is defined independent | 7 assumes that for Windows NT, the macro 'MS_WINDOWS' is defined independent |
| 8 of the compiler used. Different compilers define their own feature | 8 of the compiler used. Different compilers define their own feature |
| 9 test macro, e.g. '__BORLANDC__' or '_MSC_VER'. For OS/2, the compiler | 9 test macro, e.g. '__BORLANDC__' or '_MSC_VER'. For OS/2, the compiler |
| 10 independent macro PYOS_OS2 should be defined. On OS/2 the default | 10 independent macro PYOS_OS2 should be defined. On OS/2 the default |
| (...skipping 7428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7439 | 7439 |
| 7440 | 7440 |
| 7441 #endif /* __APPLE__ */ | 7441 #endif /* __APPLE__ */ |
| 7442 return m; | 7442 return m; |
| 7443 | 7443 |
| 7444 } | 7444 } |
| 7445 | 7445 |
| 7446 #ifdef __cplusplus | 7446 #ifdef __cplusplus |
| 7447 } | 7447 } |
| 7448 #endif | 7448 #endif |
| LEFT | RIGHT |