summaryrefslogtreecommitdiff
path: root/source/include/acapps.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/include/acapps.h')
-rw-r--r--source/include/acapps.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/source/include/acapps.h b/source/include/acapps.h
index 87284f20b0da..d14bce1ff03f 100644
--- a/source/include/acapps.h
+++ b/source/include/acapps.h
@@ -44,11 +44,9 @@
#ifndef _ACAPPS
#define _ACAPPS
-#include <stdio.h>
-
-#ifdef _MSC_VER /* disable some level-4 warnings */
-#pragma warning(disable:4100) /* warning C4100: unreferenced formal parameter */
-#endif
+#ifdef ACPI_USE_STANDARD_HEADERS
+#include <sys/stat.h>
+#endif /* ACPI_USE_STANDARD_HEADERS */
/* Common info for tool signons */
@@ -85,13 +83,13 @@
/* Macros for usage messages */
#define ACPI_USAGE_HEADER(Usage) \
- AcpiOsPrintf ("Usage: %s\nOptions:\n", Usage);
+ printf ("Usage: %s\nOptions:\n", Usage);
#define ACPI_USAGE_TEXT(Description) \
- AcpiOsPrintf (Description);
+ printf (Description);
#define ACPI_OPTION(Name, Description) \
- AcpiOsPrintf (" %-20s%s\n", Name, Description);
+ printf (" %-20s%s\n", Name, Description);
/* Check for unexpected exceptions */