diff options
author | Ben Elliston <bje@gnu.org> | 2004-08-20 02:11:49 +0000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2004-08-20 02:11:49 +0000 |
commit | 614bb47907f28c4a852364287a7650a9d06d773a (patch) | |
tree | 94f8cce591d9a8affa78493fd1aede8d0938bf00 | |
parent | 39020e6600306a224886cac1ddc9051519caa919 (diff) | |
download | dejagnu-614bb47907f28c4a852364287a7650a9d06d773a.tar.gz dejagnu-614bb47907f28c4a852364287a7650a9d06d773a.tar.bz2 dejagnu-614bb47907f28c4a852364287a7650a9d06d773a.zip |
* testglue.c: Prototype abort(3) and exit(3).
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | testglue.c | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2004-08-20 Daniel Jacobowitz <dan@debian.org> + + * testglue.c: Prototype abort(3) and exit(3). + 2004-08-14 Paul Brook <paul@codesourcery.com> * config/sim.exp (sim_download, sim_upload): New procs. @@ -40,6 +40,10 @@ #define ORIG_ABORT __wrap_abort #define ORIG_MAIN __wrap_main #endif + +extern void abort (void); +extern void exit (int); + #endif #ifdef REAL_MAIN |