diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2002-06-18 18:13:14 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-06-18 18:13:14 +0000 |
commit | c3a1a84ac4ab349cae4edd4ea4916d441e5592d2 (patch) | |
tree | 73dad42ab84d2e1f7ae89fca2652ee78b01649af /contrib/libio/stdio/getw.c | |
parent | 1b5c321d3f5e74248a590fd7e644c832368dda9d (diff) |
FreeBSD is one of the OS's that does not require the use of libio with Gcc 3.1.
Notes
Notes:
svn path=/head/; revision=98396
Diffstat (limited to 'contrib/libio/stdio/getw.c')
-rw-r--r-- | contrib/libio/stdio/getw.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/libio/stdio/getw.c b/contrib/libio/stdio/getw.c deleted file mode 100644 index 1dfafbc1d4f4..000000000000 --- a/contrib/libio/stdio/getw.c +++ /dev/null @@ -1,13 +0,0 @@ -#include "libioP.h" -#include "stdio.h" - -int -getw(fp) - FILE *fp; -{ - int w; - _IO_size_t bytes_read; - CHECK_FILE(fp, EOF); - bytes_read = _IO_sgetn (fp, (char*)&w, sizeof(w)); - return sizeof(w) == bytes_read ? w : EOF; -} |