diff options
author | spark <spark@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-03-08 23:01:28 +0000 |
---|---|---|
committer | spark <spark@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-03-08 23:01:28 +0000 |
commit | 9bece8f48fc96048c09e3499be18bcf682da670b (patch) | |
tree | 290a20d868df1089c8f093c3c308aa3e5d2aa24a /ace/OS_Memory.h | |
parent | 4ac6e0381b364df0284d387f8ad077c79e2adbfb (diff) | |
download | ATCD-9bece8f48fc96048c09e3499be18bcf682da670b.tar.gz |
Changed to skip including stddef.h for WinCE.
Diffstat (limited to 'ace/OS_Memory.h')
-rw-r--r-- | ace/OS_Memory.h | 5 |
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)) |