Changeset b3048d4 for src/libcfa/stdlib


Ignore:
Timestamp:
Jan 2, 2018, 2:19:30 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
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:
300d75b
Parents:
8aa474a (diff), 54aba8d (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:/u/cforall/software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/stdlib

    r8aa474a rb3048d4  
    1010// Created On       : Thu Jan 28 17:12:35 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Jan  1 17:35:43 2018
    13 // Update Count     : 291
     12// Last Modified On : Tue Jan  2 12:21:04 2018
     13// Update Count     : 292
    1414//
    1515
     
    265265//---------------------------------------
    266266
    267 void random_seed( long int s );
     267extern "C" { void srandom( unsigned int seed ); }               // override C version
    268268char random( void );
    269269char random( char u );
     
    275275unsigned int random( unsigned int u );
    276276unsigned int random( unsigned int l, unsigned int u );
    277 extern "C" { long int random( void ); }
     277extern "C" { long int random( void ); }                                 // override C version
    278278long int random( long int u );
    279279long int random( long int l, long int u );
Note: See TracChangeset for help on using the changeset viewer.