// -*- 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 : // Last Modified On : // Update Count : 0 // #ifndef INTERPOSE_H #define INTERPOSE_H void * interpose_symbol( const char* symbol, , const char *version ); extern __typeof__( abort ) libc_abort __attribute__(( noreturn )); extern __typeof__( exit ) libc_abort __attribute__(( noreturn )); #endif //INTERPOSE_H