X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=gcc-compat.h;h=2ead2e7404f82ae5cddac2c1a40881f2a1c8b2e2;hp=ec24db9250afbe4bff0786b0c95747dc297933db;hb=59e83bcfc11c56094c3d02c78c36556ac1fca5ae;hpb=22a0aa79753b19604a6fa4273f1479ef71dbf06d diff --git a/gcc-compat.h b/gcc-compat.h index ec24db9..2ead2e7 100644 --- a/gcc-compat.h +++ b/gcc-compat.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008 Andre Noll + * Copyright (C) 2008 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -20,7 +20,7 @@ * If not all the functions (handlers) use all arguments, gcc will print * a warning. * - * Marking those few unused function parameters with \p __a_unused to supress + * Marking those few unused function parameters with \p __a_unused to suppress * the gcc warnings allows us to get a clean build _and_ the benefit of the * warning in other cases where we do care about unused parameters. */ @@ -34,7 +34,7 @@ /** * Let gcc check format strings also for our own functions. * - * Functions marked with \p __printf will be cheked by gcc for format string + * Functions marked with \p __printf will be checked by gcc for format string * bugs, just like printf() if -Wformat-security is enabled. * * \param p The number of the "format string" parameter. @@ -71,3 +71,14 @@ * header files. */ #define _static_inline_ static inline + +/** + * On systems whihout large file support (BSD) there is no * struct stat64 and + * no lstat64(). + */ +#ifndef HAVE_STAT64 + /** Use the usual stat structure. */ + #define stat64 stat + /** Use the usual lstat() function. */ + #define lstat64 lstat +#endif