summaryrefslogtreecommitdiff
path: root/ace/OS_Memory.h
diff options
context:
space:
mode:
authorspark <spark@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-03-08 23:01:28 +0000
committerspark <spark@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-03-08 23:01:28 +0000
commit9bece8f48fc96048c09e3499be18bcf682da670b (patch)
tree290a20d868df1089c8f093c3c308aa3e5d2aa24a /ace/OS_Memory.h
parent4ac6e0381b364df0284d387f8ad077c79e2adbfb (diff)
downloadATCD-9bece8f48fc96048c09e3499be18bcf682da670b.tar.gz
Changed to skip including stddef.h for WinCE.
Diffstat (limited to 'ace/OS_Memory.h')
-rw-r--r--ace/OS_Memory.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/ace/OS_Memory.h b/ace/OS_Memory.h
index 48ce110af52..c4daffa93ac 100644
--- a/ace/OS_Memory.h
+++ b/ace/OS_Memory.h
@@ -26,7 +26,10 @@
#if defined (ACE_HAS_PACE)
# include /**/ "pace/stdlib.h"
#endif /* ACE_HAS_PACE */
-#include /**/ <stddef.h>
+
+#ifndef ACE_HAS_WINCE
+#include <stddef.h>
+#endif // ACE_HAS_WINCE
# if !defined (ACE_MALLOC_ALIGN)
# define ACE_MALLOC_ALIGN ((int) sizeof (long))