Differences From Artifact [57b3b6c720]:
- File
src/OFProcess.m
— part of check-in
[6b77a5dd8b]
at
2017-05-21 21:28:57
on branch trunk
— Prefix private methods with of_ instead of OF_
This matches Apple's style. (user: js, size: 14339) [annotate] [blame] [check-ins using]
To Artifact [c5ef32205f]:
- File src/OFProcess.m — part of check-in [1287e77e04] at 2017-05-22 23:31:26 on branch trunk — Make includes of unistd.h and fcntl.h conditional (user: js, size: 14368) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
22 23 24 25 26 27 28 | /* Work around __block being used by glibc */ #ifdef __GLIBC__ # undef __USE_XOPEN #endif #include "platform.h" | > | > > | > | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /* Work around __block being used by glibc */ #ifdef __GLIBC__ # undef __USE_XOPEN #endif #include "platform.h" #include <signal.h> #ifdef HAVE_UNISTD_H # include <unistd.h> #endif #ifndef OF_WINDOWS # include <sys/wait.h> #endif #ifdef HAVE_SPAWN_H # include <spawn.h> #endif |
| ︙ | ︙ |