Update to 2.0.0 tree from current Fremantle build
[opencv] / apps / Hawk / CVEiCL / EiC / module / stdClib / src / _NETBSD / fcntl.h
diff --git a/apps/Hawk/CVEiCL/EiC/module/stdClib/src/_NETBSD/fcntl.h b/apps/Hawk/CVEiCL/EiC/module/stdClib/src/_NETBSD/fcntl.h
deleted file mode 100644 (file)
index 57d27c2..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-struct flock {
-#if !defined(_EiC) || defined(__LP64__)
-       off_t   l_start;        /* starting offset */
-       off_t   l_len;          /* len = 0 means until end of file */
-#else
-# if __LITTLE_ENDIAN__
-       off_t   l_start;
-       int     __pad0;
-       off_t   l_len;
-       int     __pad1;
-# else
-       int     __pad0;
-       off_t   l_start;
-       int     __pad1;
-       off_t   l_len;
-# endif
-#endif
-       pid_t   l_pid;          /* lock owner */
-       short   l_type;         /* lock type: read/write, etc. */
-       short   l_whence;       /* type of l_start */
-};