//
// 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.
//
// ools.h --
//
// Author           : Thierry Delisle
// Created On       : Mon Nov 28 12:27:26 2016
// Last Modified By : Peter A. Buhr
// Last Modified On : Sat Jul 22 10:02:10 2017
// Update Count     : 1
//

#pragma once

// void abortf( const char *fmt, ... ) {
//     abort();
//     // CONTROL NEVER REACHES HERE!
// } // libAbort

#ifdef __cforall
extern "C" {
#endif
void abortf( const char fmt[], ... ) __attribute__ ((__nothrow__, __leaf__, __noreturn__));
#ifdef __cforall
}
#endif

// Local Variables: //
// mode: c //
// tab-width: 4 //
// End: //
