Changeset e102943 in buchla-68k for iolib/sprintf.c
- Timestamp:
- 07/15/2017 11:33:07 AM (7 years ago)
- Branches:
- master
- Children:
- d18a473
- Parents:
- dade7a0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
iolib/sprintf.c
rdade7a0 re102943 38 38 static int16_t spsub(int16_t c) 39 39 { 40 return((*buff++ = c) & 0xFF);40 return((*buff++ = (int8_t)c) & 0xFF); 41 41 }
Note:
See TracChangeset
for help on using the changeset viewer.