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 |
|
---|
16 | forall( type T | { int ?<?( T, T ); } )
|
---|
17 | T min( const T t1, const T t2 );
|
---|
18 |
|
---|
19 | forall( type T | { int ?>?( T, T ); } )
|
---|
20 | T max( const T t1, const T t2 );
|
---|
21 |
|
---|
22 | char abs( char );
|
---|
23 | extern "C" {
|
---|
24 | int abs( int );
|
---|
25 | } // extern
|
---|
26 | long int abs( long int );
|
---|
27 | long long int abs( long long int );
|
---|
28 | float abs( float );
|
---|
29 | double abs( double );
|
---|
30 | long double abs( long double );
|
---|
31 | float _Complex abs( float _Complex );
|
---|
32 | double _Complex abs( double _Complex );
|
---|
33 | long 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.