/* * Copyright (C) 1996-2018 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ #ifndef _SQUID_COMPAT_STDIO_H #define _SQUID_COMPAT_STDIO_H /** 64-bit broken * * provides fgetpos64, fopen64 if __USE_FILE_OFFSET64 is defined. * It then checks whether a gcc-specific __REDIRECT macro is available * (defined in , depending on __GNUC__ begin available). * If it is not available, it does a preprocessor #define. * Which undefines, with this comment: * "// Get rid of those macros defined in in lieu of real functions.". * When it does a namespace redirection ("namespace std { using ::fgetpos; }") it goes blam, as * fgetpos64 is available, while fgetpos is not. */ // Import the stdio.h definitions first to do the state setup #if HAVE_STDIO_H #include #endif // Check for the buggy case #if defined(__USE_FILE_OFFSET64) && !defined(__REDIRECT) // Define the problem functions as needed #if defined(fgetpos) #undef fgetpos inline int fgetpos(FILE *f, fpos64_t *p) { return fgetpos64(f,p); } #endif #if defined(fopen) #undef fopen inline FILE * fopen(const char *f, const char *m) { return fopen64(f,m); } #endif #if defined(freopen) #undef freopen inline FILE * freopen(const char *f, const char *m, FILE *s) { return freopen64(f,m,s); } #endif #if defined(fsetpos) #undef fsetpos inline int fsetpos(FILE *f, fpos64_t *p) { return fsetpos64(f,p); } #endif #if defined(tmpfile) #undef tmpfile inline FILE * tmpfile(void) { return tmpfile64(); } #endif #endif /* __USE_FILE_OFFSET64 && !__REDIRECT */ // Finally import the stuff we actually use #if defined(__cplusplus) #include #endif #ifndef MAXPATHLEN #define MAXPATHLEN SQUID_MAXPATHLEN #endif #endif /* _SQUID_COMPAT_STDIO_H */