summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/linux-1.0/uio.h
blob: 67af5bf76e0606a233c3b4e5a68062be53d93519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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