Changes in uspace/lib/softint/include/comparison.h [88d5c1e:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softint/include/comparison.h
r88d5c1e r9d58539 38 38 39 39 /* Signed comparison (a < b => 0, a == b => 1, a > b => 2). */ 40 extern int __cmpdi2(long long, long long);40 int __cmpdi2 (long long a, long long b); 41 41 42 42 /* Unsigned comparison (a < b => 0, a == b => 1, a > b => 2). */ 43 extern int __ucmpdi2(unsigned long long, unsigned long long);43 int __ucmpdi2 (unsigned long long a, unsigned long long b); 44 44 45 45 #endif
Note:
See TracChangeset
for help on using the changeset viewer.