// // 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 : Thierry Delisle // Last Modified On : Mon Nov 28 12:27:26 2016 // Update Count : 0 // #ifndef __LIB_TOOLS_H__ #define __LIB_TOOLS_H__ // 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 #endif //__LIB_TOOLS_H__ // Local Variables: // // mode: c // // tab-width: 4 // // End: //