From: Keir Fraser Date: Wed, 9 Jul 2008 15:00:05 +0000 (+0100) Subject: minios: Add missing fcntl.h. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14188^2~63 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=087adc9638f0641d678414c9a3e5d65a18b5d087;p=xen.git minios: Add missing fcntl.h. Signed-off-by: Keir Fraser --- diff --git a/extras/mini-os/include/posix/fcntl.h b/extras/mini-os/include/posix/fcntl.h new file mode 100644 index 0000000000..ecfd8c848c --- /dev/null +++ b/extras/mini-os/include/posix/fcntl.h @@ -0,0 +1,11 @@ +#ifndef _POSIX_FCNTL_H +#define _POSIX_FCNTL_H + +#include_next + +#define F_ULOCK 0 +#define F_LOCK 1 +#define F_TLOCK 2 +#define F_TEST 3 + +#endif /* _POSIX_FCNTL_H */