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