summaryrefslogtreecommitdiff
blob: 4ddaffb1c66d612d337a0e07bbb608650f9387fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
fix from upstream:

2004-08-20  Daniel Jacobowitz  <dan@debian.org>

	* testglue.c: Prototype abort(3) and exit(3).

diff --git a/testglue.c b/testglue.c
index 55a7f92..4ede6eb 100644
--- a/testglue.c
+++ b/testglue.c
@@ -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