Changeset a24df004 in mainline for uspace/lib/softint/generic/multiplication.c
- Timestamp:
- 2018-03-18T13:05:53Z (7 years ago)
- Parents:
- 973be387 (diff), c6a1768 (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. - git-author:
- Jakub Jermář <jakub@…> (2018-03-18 13:05:53)
- git-committer:
- GitHub <noreply@…> (2018-03-18 13:05:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softint/generic/multiplication.c
r973be387 ra24df004 64 64 } 65 65 66 long __muldi3(long a, long b) 67 { 68 return (long) __multi3(a, b); 69 } 70 66 71 /** Emulate multiplication of two 64-bit long long integers. 67 72 * 68 73 */ 69 long long __mul di3(long long a, long long b)74 long long __multi3(long long a, long long b) 70 75 { 71 76 char neg = 0;
Note:
See TracChangeset
for help on using the changeset viewer.