Finished the modularisation of vg_mylibc.c, which meant it could be removed.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3894
This commit is contained in:
Nicholas Nethercote
2005-06-12 02:43:17 +00:00
parent f56f6ef444
commit e3abdc62d5
32 changed files with 371 additions and 275 deletions

View File

@@ -45,6 +45,13 @@
format, ##args), \
0)))
__attribute__ ((__noreturn__))
extern void VG_(exit)( Int status );
/* Prints a panic message, appends newline and bug reporting info, aborts. */
__attribute__ ((__noreturn__))
extern void VG_(tool_panic) ( Char* str );
__attribute__ ((__noreturn__))
extern void VG_(assert_fail) ( Bool isCore, const Char* expr, const Char* file,
Int line, const Char* fn,