mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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.
14 lines
228 B
C
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);
|
|
}
|
|
|