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/getline.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/getline.c')
-rw-r--r-- | contrib/libio/stdio/getline.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/libio/stdio/getline.c b/contrib/libio/stdio/getline.c deleted file mode 100644 index 6f4b677086e8..000000000000 --- a/contrib/libio/stdio/getline.c +++ /dev/null @@ -1,13 +0,0 @@ -#include "libioP.h" -#include "stdio.h" - -/* NOTE: This geline function is different from _IO_getline. */ - -_IO_ssize_t -getline (lineptr, linelen, fp) - char** lineptr; - size_t* linelen; - FILE* fp; -{ - return _IO_getdelim (lineptr, linelen, '\n', fp); -} |