Changes between Version 33 and Version 34 of CommonProblems
- Timestamp:
- 05/09/10 20:52:13 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CommonProblems
v33 v34 75 75 }}} 76 76 77 === O_NOATIME undeclared === 78 79 Add below to header/source file. 80 81 {{{ 82 #include <fcntl.h> 83 #ifndef _GNU_SOURCE 84 #define _GNU_SOURCE // for O_NOATIME 85 #define O_NOATIME 01000000 86 #endif 87 }}} 88 89 77 90 === stdbool.in.h (Now fixed in Haiku) === 78 91
