From bde52789b2840efede7cba2971d8b174586018fc Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 1 Feb 2002 01:18:06 +0000 Subject: * basic_blocks.c: Replace bool with boolean, TRUE with true and FALSE with false throughout. * basic_blocks.h: Likewise. * cg_arcs.c: Likewise. * cg_dfn.c: Likewise. * cg_print.c: Likewise. * corefile.c: Likewise. * gmon_io.c: Likewise. * gprof.c: Likewise. * hist.c: Likewise. * mips.c: Likewise. * source.c: Likewise. * source.h: Likewise. * sym_ids.c: Likewise. * sym_ids.h: Likewise. * symtab.h: Likewise. * tahoe.c: Likewise. * vax.c: Likewise. * gprof.h: Likewise. (TRUE): Don't define. (FALSE): Don't define. --- gprof/cg_dfn.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gprof/cg_dfn.c') diff --git a/gprof/cg_dfn.c b/gprof/cg_dfn.c index 75b033b..ace8328 100644 --- a/gprof/cg_dfn.c +++ b/gprof/cg_dfn.c @@ -43,7 +43,7 @@ int dfn_counter = DFN_NAN; /* * Is CHILD already numbered? */ -static bool +static boolean DEFUN (is_numbered, (child), Sym * child) { return child->cg.top_order != DFN_NAN && child->cg.top_order != DFN_BUSY; @@ -53,14 +53,14 @@ DEFUN (is_numbered, (child), Sym * child) /* * Is CHILD already busy? */ -static bool +static boolean DEFUN (is_busy, (child), Sym * child) { if (child->cg.top_order == DFN_NAN) { - return FALSE; + return false; } - return TRUE; + return true; } -- cgit v1.1