Changeset 71 for trunk/src/os2ahci/os2ahci.h
- Timestamp:
- Feb 15, 2011, 1:18:21 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/os2ahci.h
r69 r71 79 79 80 80 /* max/min macros */ 81 #define max(a, b) a > b ? a : b82 #define min(a, b) a < b ? a : b81 #define max(a, b) (a) > (b) ? (a) : (b) 82 #define min(a, b) (a) < (b) ? (a) : (b) 83 83 84 84 /* debug output macros */
Note:
See TracChangeset
for help on using the changeset viewer.