// 
// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
//
// The contents of this file are covered under the licence agreement in the
// file "LICENCE" distributed with Cforall.
// 
// div.c -- 
// 
// Author           : Peter A. Buhr
// Created On       : Tue Aug  8 16:28:43 2017
// Last Modified By : Peter A. Buhr
// Last Modified On : Wed Aug 30 07:56:28 2017
// Update Count     : 17
// 

#include <fstream>
#include <stdlib>										// div

struct T { int i; };
T ?/?( T t1, T t2 ) { return t1.i / t2.i; }
T ?%?( T t1, T t2 ) { return t1.i % t2.i; }
ofstream * ?|?( ofstream * os, T t ) { return os | t.i; }

int main( void ) {
	sout | "div" | div( 13, 5 ) | div( 13L, 5L ) | div( 13LL, 5LL ) | endl;
	short s1 = 13, s2 = 5;
	sout | "div" | div( s1, s2 ) | endl;
	T t1 = { 13 }, t2 = { 5 };
	sout | "div" | div( t1, t2 ) | endl;				// polymorphic div
} // main

// Local Variables: //
// tab-width: 4 //
// compile-command: "cfa div.c" //
// End: //
