Files
swift-mirror/tools/swift-reflection-test/overrides.h
David Farler 3c4f059c0f Provide shims for fork/execv for watchOS and tvOS
These functions are marked as unavailable but can be linked. This
is a temporary hack.
2016-04-05 16:59:17 -07:00

7 lines
148 B
C

// These APIs marked unavailable on watchOS and tvOS.
#include <sys/types.h>
pid_t _fork(void);
int _execv(const char *path, char * const *argv);