diff options
author | dt <dt@FreeBSD.org> | 1999-04-04 21:47:53 +0000 |
---|---|---|
committer | dt <dt@FreeBSD.org> | 1999-04-04 21:47:53 +0000 |
commit | b2093101cdf347dc85d21dbfd2c83df476bc9c82 (patch) | |
tree | f447fc664d42ab2b8e31bf60f1e035482af56c09 /include | |
parent | 99745231197e298b34f23e9f8c7147a812d6de87 (diff) | |
download | FreeBSD-src-b2093101cdf347dc85d21dbfd2c83df476bc9c82.zip FreeBSD-src-b2093101cdf347dc85d21dbfd2c83df476bc9c82.tar.gz |
Add prototypes for pread and pwrite.
Diffstat (limited to 'include')
-rw-r--r-- | include/unistd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h index 13afc19..e320c15 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 *)); |