]> granicus.if.org Git - procps-ng/commitdiff
sysctl: use stdbool.h
authorMike Frysinger <vapier@gentoo.org>
Thu, 3 May 2012 05:02:52 +0000 (01:02 -0400)
committerSami Kerola <kerolasa@iki.fi>
Thu, 3 May 2012 07:16:34 +0000 (09:16 +0200)
The stdbool.h header is part of C99 and has been usable on systems for
more than a decade.  Let's drop these manual hacks.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
sysctl.c

index df0ea432624f0b7ecd0252f62ffa90dbbcc26874..0c4a6309826f7d0dd24aba5d7e86e6a7c48a65fd 100644 (file)
--- a/sysctl.c
+++ b/sysctl.c
@@ -32,6 +32,7 @@
 #include <libgen.h>
 #include <limits.h>
 #include <regex.h>
+#include <stdbool.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include "proc/procps.h"
 #include "proc/version.h"
 
-/* Proof that C++ causes brain damage: */
-typedef int bool;
-static bool true  = 1;
-static bool false = 0;
-
 /*
  *    Globals...
  */