summaryrefslogtreecommitdiff
path: root/Source/UnixUserland/wait.c
blob: 5073c77b304439edfac76cc6f3f3fe59ef4c516f (plain) (blame)
1
2
3
4
5
6
7
8
#include <errno.h>
#undef errno
extern int errno;

int wait(int *status) {
	errno = ECHILD;
	return -1;
}