Changeset 29e7cc7 in mainline for boot/generic/include/macros.h
- Timestamp:
- 2025-04-18T15:14:10Z (2 months ago)
- Children:
- e77c3ed
- Parents:
- 800d188 (diff), 25fdb2d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/generic/include/macros.h
r800d188 r29e7cc7 34 34 35 35 #define min(a, b) ((a) < (b) ? (a) : (b)) 36 #define max(a, b) ((a) > (b) ? (a) : (b)) 36 37 37 38 #define isdigit(d) (((d) >= '0') && ((d) <= '9'))
Note:
See TracChangeset
for help on using the changeset viewer.