aboutsummaryrefslogtreecommitdiff
path: root/include/stdio.h
diff options
context:
space:
mode:
authorDmitrij Tejblum <dt@FreeBSD.org>1999-02-08 21:32:38 +0000
committerDmitrij Tejblum <dt@FreeBSD.org>1999-02-08 21:32:38 +0000
commit7307d07db6d636b8690c330a65b857dbe1738364 (patch)
treeff7ef06c4da289753c0ab5f95214f648a3626b95 /include/stdio.h
parent0d35e40d61a162640b2963d3647050e33c66fab8 (diff)
downloadsrc-7307d07db6d636b8690c330a65b857dbe1738364.tar.gz
src-7307d07db6d636b8690c330a65b857dbe1738364.zip
Added functions fseeko() and ftello() (from susv2).
Fixed fgetpos() and fsetpos() for offsets > 2GB. PR: 8637 Submitted by: Dan Nelson <dnelson@emsphone.com> (adjusted by me a little)
Notes
Notes: svn path=/head/; revision=43782
Diffstat (limited to 'include/stdio.h')
-rw-r--r--include/stdio.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h
index b2f6957c7a16..8472e4bde3b0 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)stdio.h 8.5 (Berkeley) 4/29/95
- * $Id: stdio.h,v 1.20 1998/07/13 06:45:20 bde Exp $
+ * $Id: stdio.h,v 1.21 1998/12/14 19:23:16 dt Exp $
*/
#ifndef _STDIO_H_
@@ -296,6 +296,8 @@ __BEGIN_DECLS
int asprintf __P((char **, const char *, ...)) __printflike(2, 3);
char *fgetln __P((FILE *, size_t *));
int fpurge __P((FILE *));
+int fseeko __P((FILE *, _BSD_OFF_T_, int));
+_BSD_OFF_T_ ftello __P((FILE *));
int getw __P((FILE *));
int pclose __P((FILE *));
FILE *popen __P((const char *, const char *));