diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-07-16 15:30:32 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-07-16 15:30:32 +0000 |
commit | 778876f6ce542fd3d6611d30ac474c9b26e15fa7 (patch) | |
tree | b65e4573ac3c938386970f28cc65d7cd72374125 /newlib/libc/stdio/ftell.c | |
parent | df2bb2a531208d64be1ec80342e02290afdb6d46 (diff) | |
download | cygnal-778876f6ce542fd3d6611d30ac474c9b26e15fa7.tar.gz cygnal-778876f6ce542fd3d6611d30ac474c9b26e15fa7.tar.bz2 cygnal-778876f6ce542fd3d6611d30ac474c9b26e15fa7.zip |
2002-07-16 Jeff Johnston <jjohnstn@redhat.com>
* libc/Makefile.am (stmp-extra): New target to set makeinfo flag
if LIBC_EXTRA_LIB is present.
* libc/Makefile.in: Regenerated.
* libc/libc.texinfo: Add blank line.
* libc/argz/Makefile.am: Add doc support.
* libc/search/Makefile.am: Ditto.
* libc/argz/Makefile.in: Regenerated.
* libc/search/Makefile.in: Ditto.
* libc/misc/misc.tex: Add ffs function.
* libc/stdio/ftell.c: Fix missing doc delimeter in description.
Diffstat (limited to 'newlib/libc/stdio/ftell.c')
-rw-r--r-- | newlib/libc/stdio/ftell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/ftell.c b/newlib/libc/stdio/ftell.c index af17e248e..5cd3987c0 100644 --- a/newlib/libc/stdio/ftell.c +++ b/newlib/libc/stdio/ftell.c @@ -46,7 +46,7 @@ The result of <<ftell>>/<<ftello>> is the current position for a file identified by <[fp]>. If you record this result, you can later use it with <<fseek>>/<<fseeko>> to return the file to this position. The difference between <<ftell>> and <<ftello>> is that -<<ftell>> returns <<long>> and <<ftello> returns <<off_t>>. +<<ftell>> returns <<long>> and <<ftello>> returns <<off_t>>. In the current implementation, <<ftell>>/<<ftello>> simply uses a character count to represent the file position; this is the same number that |