From 1e2d76a86cee9bc0919fbae90f495960e9fbe8b7 Mon Sep 17 00:00:00 2001 From: Colin Finck Date: Sat, 15 Mar 2008 00:23:40 +0000 Subject: [PATCH] - Consistently use the C++ wrapper headers (cstdio, cstdlib, ...) around the standard C headers and also add for "strtok", "strcpy" and "strncmp" - Remove a useless typedef, which causes a warning with newer GCC's svn path=/trunk/; revision=32685 --- reactos/tools/sysreg/rosboot_test.cpp | 15 ++++++++------- reactos/tools/sysreg/rosboot_test.h | 2 +- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/reactos/tools/sysreg/rosboot_test.cpp b/reactos/tools/sysreg/rosboot_test.cpp index 502aaf7b43e..c93b01d984d 100644 --- a/reactos/tools/sysreg/rosboot_test.cpp +++ b/reactos/tools/sysreg/rosboot_test.cpp @@ -20,13 +20,14 @@ #include #include #include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include #ifndef __LINUX__ #include #include diff --git a/reactos/tools/sysreg/rosboot_test.h b/reactos/tools/sysreg/rosboot_test.h index 640ff5e2264..1b0ea2dc802 100644 --- a/reactos/tools/sysreg/rosboot_test.h +++ b/reactos/tools/sysreg/rosboot_test.h @@ -117,7 +117,7 @@ namespace Sysreg_ void dumpCheckpoints(); -typedef enum DebugState +enum DebugState { DebugStateContinue = 1, /* continue debugging */ DebugStateBSODDetected, /* bsod detected */