summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/hpux-9.03/uio.h
blob: d1ec4c94f2205beea98c03512a78860ca6588f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* ==== uio.h ============================================================
 * Copyright (c) 1994 by Chris Provenzano, proven@athena.mit.edu	
 *
 * Description : Correct HP-UX header file.
 */

#ifndef _PTHREAD_UIO_H_
#define _PTHREAD_UIO_H_

#include <sys/cdefs.h>

struct iovec {
	void 	*iov_base;
	size_t	iov_len;
};

__BEGIN_DECLS

int 		readv				__P_((int, const struct iovec *, int)); 
int 		writev				__P_((int, const struct iovec *, int));

__END_DECLS

#endif