Use ?:= as the assignement operator for PREFIX.
[adu.git] / gcc-compat.h
index ec24db9250afbe4bff0786b0c95747dc297933db..1964e78bfd527d7c9ade762c7473ecc60ba72e93 100644 (file)
  * 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