From b2093101cdf347dc85d21dbfd2c83df476bc9c82 Mon Sep 17 00:00:00 2001
From: dt
Date: Sun, 4 Apr 1999 21:47:53 +0000
Subject: [PATCH] Add prototypes for pread and pwrite.
---
include/unistd.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/unistd.h b/include/unistd.h
index 13afc190e8b5..e320c15319fd 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -154,7 +154,9 @@ int mkstemp __P((char *));
char *mktemp __P((char *));
int nfssvc __P((int, void *));
int nice __P((int));
+ssize_t pread __P((int, void *, size_t, off_t));
int profil __P((char *, int, int, int));
+ssize_t pwrite __P((int, const void *, size_t, off_t));
int rcmd __P((char **, int, const char *,
const char *, const char *, int *));
char *re_comp __P((const char *));