Changeset 3569 for trunk/kStuff/kLdr/kLdr.h
- Timestamp:
- Aug 31, 2007, 4:16:27 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/kLdr/kLdr.h
r3567 r3569 35 35 * Include the base typedefs and macros. 36 36 */ 37 #include "kLdrBase.h" 37 #include <k/kDefs.h> 38 #include <k/kTypes.h> 38 39 39 40 … … 58 59 # define PRI_KLDRADDR "llx" 59 60 #endif 61 62 /** Align a KSIZE value. */ 63 #define KLDR_ALIGN_ADDR(val, align) ( ((val) + ((align) - 1)) & ~(KLDRADDR)((align) - 1) ) 60 64 61 65
Note:
See TracChangeset
for help on using the changeset viewer.