// -*- Mode: CFA -*- // // 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 : Thu Jul 20 21:46:46 2017 // Update Count : 1 // #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 ));