summaryrefslogtreecommitdiff
path: root/dmake/function.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/function.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/function.c')
-rw-r--r--dmake/function.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/dmake/function.c b/dmake/function.c
index 20e83b7f9695..baa48346c08b 100644
--- a/dmake/function.c
+++ b/dmake/function.c
@@ -1,10 +1,10 @@
-/* RCS $Id: function.c,v 1.2 2002-10-04 13:31:34 waratah Exp $
+/* RCS $Id: function.c,v 1.3 2002-10-11 13:42:42 waratah Exp $
--
-- SYNOPSIS
-- GNU style functions for dmake.
--
-- DESCRIPTION
--- All GNU stule functions understood by dmake are implemented in this
+-- All GNU style functions understood by dmake are implemented in this
-- file. Currently the only such function is $(mktmp ...) which is
-- not part of GNU-make is an extension provided by dmake.
--
@@ -568,22 +568,6 @@ char *mod1;
}
-static int
-not (arg)
-int arg;
-{
- return(!arg);
-}
-
-
-static int
-nop (arg)
-int arg;
-{
- return(arg);
-}
-
-
static char *
_exec_andor( args, doand )
char *args;