summaryrefslogtreecommitdiff
path: root/ace/Basic_Types.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Basic_Types.h')
-rw-r--r--ace/Basic_Types.h27
1 files changed, 7 insertions, 20 deletions
diff --git a/ace/Basic_Types.h b/ace/Basic_Types.h
index 06e237055ac..6d04a200781 100644
--- a/ace/Basic_Types.h
+++ b/ace/Basic_Types.h
@@ -53,19 +53,17 @@
# endif /* ACE_LACKS_PRAGMA_ONCE */
// Pull in definitions
-# include /**/ <limits.h> // Integer limits
-# include /**/ <float.h> // Floating point limits
-# include /**/ <stdlib.h> // Other types
-# include /**/ <stddef.h> // Get ptrdiff_t - see further comments below
+# include "ace/os_include/limits.h" // Integer limits
+# include "ace/os_include/float.h" // Floating point limits
+# include "ace/os_include/stdlib.h" // Other types
+# include "ace/os_include/stddef.h" // Get ptrdiff_t - see further comments below
# if defined(ACE_LACKS_LONGLONG_T)
-# include /**/ <stdarg.h> // LynxOS requires this before stdio.h
-# include /**/ <stdio.h> // For long long emulation
+# include "ace/os_include/stdarg.h" // LynxOS requires this before stdio.h
+# include "ace/os_include/stdio.h" // For long long emulation
# endif /* ACE_LACKS_LONGLONG_T */
-# if !defined (ACE_LACKS_SYS_TYPES_H)
-# include /**/ <sys/types.h>
-# endif /* ACE_LACKS_SYS_TYPES_H */
+# include "ace/os_include/sys/types.h"
# if !defined (ACE_LACKS_PARAM_H)
# include /**/ <sys/param.h>
@@ -73,17 +71,6 @@
# include "ace/ACE_export.h"
-// Pick up MAXPATHLEN without need of OS.h.
-#if !defined (MAXPATHLEN)
-# if defined (ACE_WIN32)
-# define MAXPATHLEN _MAX_PATH
-# elif defined (_POSIX_PATH_MAX)
-# define MAXPATHLEN _POSIX_PATH_MAX
-# else
-# define MAXPATHLEN 1024
-# endif /* ACE_WIN32 */
-#endif /* MAXPATHLEN */
-
// A char always has 1 byte, by definition.
# define ACE_SIZEOF_CHAR 1