1 /* Copyright (C) 1991, 92, 93, 94, 95, 96 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA. */
23 /* Read up to N chars into BUF from COOKIE.
24 Return how many chars were read, 0 for EOF or -1 for error. */
26 __stdio_read (cookie
, buf
, n
)
35 /* Write up to N chars from BUF to COOKIE.
36 Return how many chars were written or -1 for error. */
38 __stdio_write (cookie
, buf
, n
)
40 register const char *buf
;
47 /* Move COOKIE's file position *POS bytes, according to WHENCE.
48 The new file position is stored in *POS.
49 Returns zero if successful, nonzero if not. */
51 __stdio_seek (cookie
, pos
, whence
)
60 /* Close the file associated with COOKIE.
61 Return 0 for success or -1 for failure. */
63 __stdio_close (cookie
)
70 /* Return the POSIX.1 file descriptor associated with COOKIE,
71 or -1 for errors. If COOKIE does not relate to any POSIX.1 file
72 descriptor, this should return -1 with errno set to EOPNOTSUPP. */
74 __stdio_fileno (cookie
)
82 /* Open FILENAME with the mode in M.
83 Store the magic cookie associated with the opened file in *COOKIEPTR.
84 Return zero on success and nonzero on failure. */
86 __stdio_open (filename
, m
, cookieptr
)
96 /* Open FILENAME with the mode in M. Use the same magic cookie
97 already in *COOKIEPTR if possible, closing the old cookie with CLOSEFN. */
99 __stdio_reopen (filename
, m
, cookieptr
)
100 const char *filename
;
103 __io_close_fn closefn
;
105 __set_errno (ENOSYS
);
110 stub_warning (__stdio_read
)
111 stub_warning (__stdio_write
)
112 stub_warning (__stdio_seek
)
113 stub_warning (__stdio_close
)
114 stub_warning (__stdio_fileno
)
115 stub_warning (__stdio_open
)
116 stub_warning (__stdio_reopen
)