Changeset c82950a in mainline for arch/sparc64/loader/ofw.c
- Timestamp:
- 2006-07-03T22:41:27Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b7dc656
- Parents:
- b95b717
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/loader/ofw.c
rb95b717 rc82950a 32 32 void write(const char *str, const int len) 33 33 { 34 ofw_write(str, len); 34 int i; 35 36 for (i = 0; i < len; i++) { 37 if (str[i] == '\n') 38 ofw_write("\r", 1); 39 ofw_write(&str[i], 1); 40 } 35 41 }
Note:
See TracChangeset
for help on using the changeset viewer.