// // 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. // // interpose.h -- // // Author : Thierry Delisle // Created On : Wed Mar 29 15:56:41 2017 // Last Modified By : Peter A. Buhr // Last Modified On : Fri Jul 21 22:33:02 2017 // Update Count : 2 // #pragma once void * interpose_symbol( const char* symbol, const char *version ); extern __typeof__( abort ) libc_abort __attribute__(( noreturn )); extern __typeof__( exit ) libc_abort __attribute__(( noreturn )); // Local Variables: // // mode: c // // tab-width: 4 // // End: //