Changes in / [a24df004:973be387] in mainline


Ignore:
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    ra24df004 r973be387  
    238238        $(USPACE_PATH)/lib/label/test-liblabel \
    239239        $(USPACE_PATH)/lib/posix/test-libposix \
    240         $(USPACE_PATH)/lib/softint/test-libsoftint \
    241240        $(USPACE_PATH)/lib/uri/test-liburi \
    242241        $(USPACE_PATH)/drv/bus/usb/xhci/test-xhci \
  • uspace/lib/pcut/include/pcut/asserts.h

    ra24df004 r973be387  
    186186#define PCUT_ASSERT_INT_EQUALS(expected, actual) \
    187187        do {\
    188                 long long pcut_expected_eval = (expected); \
    189                 long long pcut_actual_eval = (actual); \
     188                long pcut_expected_eval = (expected); \
     189                long pcut_actual_eval = (actual); \
    190190                if (pcut_expected_eval != pcut_actual_eval) { \
    191                         PCUT_ASSERTION_FAILED("Expected <%lld> but got <%lld> (%s != %s)", \
     191                        PCUT_ASSERTION_FAILED("Expected <%ld> but got <%ld> (%s != %s)", \
    192192                                pcut_expected_eval, pcut_actual_eval, \
    193193                                #expected, #actual); \
  • uspace/lib/softint/Makefile

    ra24df004 r973be387  
    3939        generic/shift.c
    4040
    41 TEST_SOURCES = \
    42         test/main.c \
    43         test/multiplication.c
    44 
    4541include $(USPACE_PREFIX)/Makefile.common
  • uspace/lib/softint/generic/multiplication.c

    ra24df004 r973be387  
    6464}
    6565
    66 long __muldi3(long a, long b)
    67 {
    68         return (long) __multi3(a, b);
    69 }
    70 
    7166/** Emulate multiplication of two 64-bit long long integers.
    7267 *
    7368 */
    74 long long __multi3(long long a, long long b)
     69long long __muldi3 (long long a, long long b)
    7570{
    7671        char neg = 0;
  • uspace/lib/softint/include/multiplication.h

    ra24df004 r973be387  
    3737#define __SOFTINT_MULTIPLICATION_H__
    3838
    39 extern long __muldi3(long, long);
    40 
    4139/* 64 bit multiplication */
    42 extern long long __multi3(long long, long long);
     40extern long long __muldi3(long long, long long);
    4341
    4442#endif
Note: See TracChangeset for help on using the changeset viewer.