Fix user summary accounting if pattern is given.
[adu.git] / gcc-compat.h
index 4ba96ae16da204b760219bded23e55c38053976c..5bfaa096b71c115d9a9e69aec7090fb982348fa9 100644 (file)
@@ -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.
  */
 #define _static_inline_ static inline
 
+/**
+ * On systems whihout large file support (BSD) there is no * struct stat64 and
+ * no lstat64().
+ */
 #ifndef HAVE_STAT64
-#define stat64 stat
-#define lstat64 lstat
+       /** Use the usual stat structure. */
+       #define stat64 stat
+       /** Use the usual lstat() function. */
+       #define lstat64 lstat
 #endif