source: src/libcfa/algorithm@ ae8b942

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new string with_gc
Last change on this file since ae8b942 was d3b7937, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

building runtime library (first attempt)

  • Property mode set to 100644
File size: 950 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// alorgithm --
8//
9// Author : Peter A. Buhr
10// Created On : Thu Jan 28 17:12:35 2016
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Fri Jan 29 14:57:51 2016
13// Update Count : 20
14//
15
16forall( type T | { int ?<?( T, T ); } )
17T min( const T t1, const T t2 );
18
19forall( type T | { int ?>?( T, T ); } )
20T max( const T t1, const T t2 );
21
22char abs( char );
23extern "C" {
24int abs( int );
25} // extern
26long int abs( long int );
27long long int abs( long long int );
28float abs( float );
29double abs( double );
30long double abs( long double );
31float _Complex abs( float _Complex );
32double _Complex abs( double _Complex );
33long double _Complex abs( long double _Complex );
34
35// Local Variables: //
36// mode: c //
37// tab-width: 4 //
38// End: //
Note: See TracBrowser for help on using the repository browser.