Changeset 2afb650 in mainline for boot/generic/src/printf_core.c
- Timestamp:
- 2010-05-04T11:07:11Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ae4235c
- Parents:
- 4940ea9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/generic/src/printf_core.c
r4940ea9 r2afb650 82 82 } qualifier_t; 83 83 84 static const char nullstr[]= "(NULL)";85 static const char digits_small[]= "0123456789abcdef";86 static const char digits_big[]= "0123456789ABCDEF";84 static const char *nullstr = "(NULL)"; 85 static const char *digits_small = "0123456789abcdef"; 86 static const char *digits_big = "0123456789ABCDEF"; 87 87 static const char invalch = U_SPECIAL; 88 88 … … 218 218 219 219 return ((int) counter); 220 221 220 } 222 221
Note:
See TracChangeset
for help on using the changeset viewer.