Files
swift-mirror/tools/swift-reflection-test/overrides.c
David Farler 210f8dfe63 swift-reflection-test: Target SwiftRemoteMirror C API
This tool should test the usage from SwiftRemoteMirror dylib and
the C API, since that is the public interface from which we're
vending the remote reflection functionality.
2016-04-28 19:38:03 -07:00

14 lines
228 B
C

#include "overrides.h"
extern pid_t fork(void);
extern int execv(const char *path, char * const *argv);
pid_t _fork(void) {
return fork();
}
int _execv(const char *path, char * const *argv) {
return execv(path, argv);
}