diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-11 17:23:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-11 17:23:27 +0000 |
commit | 26169cba3585d3af8568f67e9141cf23f5092d4c (patch) | |
tree | 40552bd95a4f174c15273900e1593de811adfbe7 /libio | |
parent | 64ed45330887d909ab73c9a3e971767d70d4610a (diff) | |
download | glibc-26169cba3585d3af8568f67e9141cf23f5092d4c.tar.gz glibc-26169cba3585d3af8568f67e9141cf23f5092d4c.tar.xz glibc-26169cba3585d3af8568f67e9141cf23f5092d4c.zip |
Remove definition of off_t.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/stdio.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libio/stdio.h b/libio/stdio.h index c8565e815b..db84a4ecd4 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -479,22 +479,6 @@ extern void rewind (FILE *__stream) __THROW; file offset. `long int' is not the right type. These definitions are originally defined in the Large File Support API. */ -/* Types needed in these functions. */ -#ifndef __off_t_defined -# ifndef __USE_FILE_OFFSET64 -typedef __off_t off_t; -# else -typedef __off64_t off_t; -# endif -# define __off_t_defined -#endif - -#if defined __USE_LARGEFILE64 && !defined __off64_t_defined -typedef __off64_t off64_t; -# define __off64_t_defined -#endif - - #ifndef __USE_FILE_OFFSET64 # ifdef __USE_LARGEFILE /* Seek to a certain position on STREAM. */ |