Changeset fc2cd7d6 for src/libcfa/stdlib


Ignore:
Timestamp:
Feb 26, 2017, 1:09:56 PM (9 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
3f22503
Parents:
ef9cc56 (diff), bf26fa5 (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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/stdlib

    ref9cc56 rfc2cd7d6  
    1010// Created On       : Thu Jan 28 17:12:35 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Feb 23 14:11:47 2017
    13 // Update Count     : 100
     12// Last Modified On : Fri Feb 24 21:07:16 2017
     13// Update Count     : 101
    1414//
    1515
     
    9595//---------------------------------------
    9696
    97 char abs( char );
     97unsigned char abs( signed char );
    9898extern "C" { int abs( int ); }                                                  // use default C routine for int
    99 long int abs( long int );
    100 long long int abs( long long int );
     99unsigned long int abs( long int );
     100unsigned long long int abs( long long int );
    101101float abs( float );
    102102double abs( double );
Note: See TracChangeset for help on using the changeset viewer.