summaryrefslogtreecommitdiff
path: root/ace/os_include/wchar.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/os_include/wchar.h')
-rw-r--r--ace/os_include/wchar.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/ace/os_include/wchar.h b/ace/os_include/wchar.h
new file mode 100644
index 00000000000..f48423ae159
--- /dev/null
+++ b/ace/os_include/wchar.h
@@ -0,0 +1,38 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file wchar.h
+ *
+ * wide-character handling
+ *
+ * $Id$
+ *
+ * @author Don Hinton <dhinton@ieee.org>
+ * @author This code was originally in various places including ace/OS.h.
+ */
+//=============================================================================
+
+#ifndef ACE_OS_INCLUDE_WCHAR_H
+#define ACE_OS_INCLUDE_WCHAR_H
+
+#include "ace/pre.h"
+
+#include "ace/config-all.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+// ctype.h, string.h, stdarg.h, stdio.h, stdlib.h, time.h
+#include "ace/os_include/stdio.h"
+#include "ace/os_include/stdlib.h"
+#include "ace/os_include/time.h"
+#include "ace/os_include/string.h"
+#include "ace/os_include/ctype.h"
+
+#if !defined (ACE_LACKS_WCHAR_H)
+# include /**/ <wchar.h>
+#endif /* !ACE_LACKS_WCHAR_H */
+
+#endif /* ACE_OS_INCLUDE_WCHAR_H */