Ignore:
Timestamp:
2018-01-15T22:39:24Z (8 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2013ea9, aec41c8
Parents:
dbbbe75b
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-15 21:54:21)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-15 22:39:24)
Message:

Fix symbols in libsoftint.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/softint/generic/comparison.c

    rdbbbe75b r8348846  
    3434 */
    3535
     36#include <alias.h>
    3637#include <comparison.h>
    3738#include <lltype.h>
     
    4142#define GREATER 2;
    4243
    43 int __cmpdi2 (long long a, long long b)
     44int __cmpti2 (long long a, long long b)
    4445{
    4546        union lltype lla;
     
    6465}
    6566
    66 int __ucmpdi2 (unsigned long long a, unsigned long long b)
     67int __ucmpti2 (unsigned long long a, unsigned long long b)
    6768{
    6869        union lltype lla;
     
    8788}
    8889
     90#if LONG_MAX == LLONG_MAX
     91int ALIAS(__cmp, i2);
     92int ALIAS(__ucmp, i2);
     93#endif
     94
    8995/** @}
    9096 */
Note: See TracChangeset for help on using the changeset viewer.