diff options
| author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-19 17:11:56 +0100 | 
|---|---|---|
| committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:29 +0200 | 
| commit | 8f5a869f9bc9bacc027f7c5c9ec4affbb3afaac4 (patch) | |
| tree | debaa42e87045b3501b24ba5b6df98b0f841c0fa | |
| parent | d0f6eab2e92aa83dbe3e167d9e915d5c094dcd35 (diff) | |
uClibc_stdio.h: remove parts solved in features.h
Try to have one and only view of settings, no special handling for stdio code.
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
| -rw-r--r-- | libc/sysdeps/linux/common/bits/uClibc_stdio.h | 29 | 
1 files changed, 0 insertions, 29 deletions
diff --git a/libc/sysdeps/linux/common/bits/uClibc_stdio.h b/libc/sysdeps/linux/common/bits/uClibc_stdio.h index db28ff763..57cb81f5f 100644 --- a/libc/sysdeps/linux/common/bits/uClibc_stdio.h +++ b/libc/sysdeps/linux/common/bits/uClibc_stdio.h @@ -54,27 +54,6 @@  #endif  /**********************************************************************/ -/* Make sure defines related to large files are consistent. */ -#ifdef _LIBC - -#ifdef __UCLIBC_HAS_LFS__ -#undef __USE_LARGEFILE -#undef __USE_LARGEFILE64 -#undef __USE_FILE_OFFSET64 -/* If we're actually building uClibc with large file support, only define... */ -#define __USE_LARGEFILE64	1 -#endif /* __UCLIBC_HAS_LFS__ */ - -#else  /* not _LIBC */ - -#ifndef __UCLIBC_HAS_LFS__ -#if defined(__LARGEFILE64_SOURCE) || defined(__USE_LARGEFILE64) || defined(__USE_FILE_OFFSET64) -#error Sorry... uClibc was built without large file support! -#endif -#endif /* __UCLIBC_HAS_LFS__ */ - -#endif /* _LIBC */ -/**********************************************************************/  #ifdef __UCLIBC_HAS_WCHAR__  #define __need_wchar_t @@ -107,14 +86,6 @@  #undef __STDIO_PUTC_MACRO  #endif -#ifdef __BCC__ -#undef __UCLIBC_HAS_LFS__ -#endif - -#ifndef __UCLIBC_HAS_LFS__ -#undef __UCLIBC_HAS_FOPEN_LARGEFILE_MODE__ -#endif -  /**********************************************************************/  #include <bits/uClibc_mutex.h>  | 
