summaryrefslogtreecommitdiff
path: root/dmake/quit.c
diff options
context:
space:
mode:
authorKen Foskey <waratah@openoffice.org>2002-10-11 12:42:49 +0000
committerKen Foskey <waratah@openoffice.org>2002-10-11 12:42:49 +0000
commitbc95f59574c8d2535fa028e8a6af09f826725801 (patch)
tree5d0d413043879f3fc13b8fe3ce0b3e9c2188de73 /dmake/quit.c
parent68496a2957e2f4b7bb2b8a943236ea4859905bf2 (diff)
dmake: Implement fix for Lost child problem. Correct some checks for functions (assumed present) and also fix up all gcc warnings using -Wall.
Diffstat (limited to 'dmake/quit.c')
-rw-r--r--dmake/quit.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/dmake/quit.c b/dmake/quit.c
index ffb4eda74d4c..ce383b394dc8 100644
--- a/dmake/quit.c
+++ b/dmake/quit.c
@@ -1,4 +1,4 @@
-/* RCS $Id: quit.c,v 1.1.1.1 2000-09-22 15:33:25 hr Exp $
+/* RCS $Id: quit.c,v 1.2 2002-10-11 13:42:43 waratah Exp $
--
-- SYNOPSIS
-- End the dmake session.
@@ -48,6 +48,11 @@ Quit()/*
}
+const int in_quit( void )
+{
+ return _dont_quit;
+}
+
static void
_handle_quit( err_target )/*
============================