Ignore:
Timestamp:
Feb 1, 2016, 2:24:50 PM (8 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
2a4b088, b4cd03b7
Parents:
ae8b942
Message:

correctly set type for complex constants, consolidate function name tables, add offsetof, refactor printing complex constants to use basic types

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/algorithm

    rae8b942 r5721a6d  
    1010// Created On       : Thu Jan 28 17:12:35 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Jan 29 14:57:51 2016
    13 // Update Count     : 20
     12// Last Modified On : Mon Feb  1 13:41:51 2016
     13// Update Count     : 26
    1414//
     15
     16//---------------------------------------
    1517
    1618forall( type T | { int ?<?( T, T ); } )
     
    1921forall( type T | { int ?>?( T, T ); } )
    2022T max( const T t1, const T t2 );
     23
     24//---------------------------------------
     25
     26forall( type T )
     27void swap( T * t1, T * t2 );
     28
     29//---------------------------------------
    2130
    2231char abs( char );
     
    3342long double _Complex abs( long double _Complex );
    3443
     44//---------------------------------------
     45
     46void randseed( long int s );
     47char random();
     48int random();
     49unsigned int random();
     50long int random();
     51unsigned long int random();
     52float random();
     53double random();
     54float _Complex random();
     55double _Complex random();
     56long double _Complex random();
     57
    3558// Local Variables: //
    3659// mode: c //
Note: See TracChangeset for help on using the changeset viewer.