summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/linux-1.0/uio.h
diff options
context:
space:
mode:
Diffstat (limited to 'mit-pthreads/machdep/linux-1.0/uio.h')
-rwxr-xr-xmit-pthreads/machdep/linux-1.0/uio.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/mit-pthreads/machdep/linux-1.0/uio.h b/mit-pthreads/machdep/linux-1.0/uio.h
new file mode 100755
index 00000000000..67af5bf76e0
--- /dev/null
+++ b/mit-pthreads/machdep/linux-1.0/uio.h
@@ -0,0 +1,15 @@
+/* ==== uio.h ============================================================
+ * Copyright (c) 1994 by Chris Provenzano, proven@athena.mit.edu
+ *
+ * Description : Correct Linux header file.
+ */
+
+#ifndef _PTHREAD_UIO_H_
+#define _PTHREAD_UIO_H_
+
+struct iovec {
+ void *iov_base;
+ size_t iov_len;
+};
+
+#endif