blob: 2089f28a690da7a9cdf53c85599040339b6ae0e0 (
plain)
1
2
3
4
5
6
7
8
|
/* This is really, really dumb. But AmigaOS gives us vfork(), but not
fork() and this should make things work despite their brokenness */
#include "system.h"
int fork() {
return vfork();
}
|