summaryrefslogtreecommitdiff
path: root/ACE/ace/os_include/os_stddef.h
diff options
context:
space:
mode:
authorolli <olli@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-02-17 20:23:18 +0000
committerolli <olli@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-02-17 20:23:18 +0000
commita358d0fb9fd94e96f452170d6f7ab980359532b6 (patch)
tree8cfb5267351abead03acc6f7e8a276abf8d8b4d4 /ACE/ace/os_include/os_stddef.h
parentb37ba264203d6a3c0c7237edc4d94cac9550c4eb (diff)
downloadATCD-a358d0fb9fd94e96f452170d6f7ab980359532b6.tar.gz
ChangeLogTag: Tue Feb 17 20:19:06 UTC 2009 Olli Savia <ops@iki.fi>
Diffstat (limited to 'ACE/ace/os_include/os_stddef.h')
-rw-r--r--ACE/ace/os_include/os_stddef.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/ACE/ace/os_include/os_stddef.h b/ACE/ace/os_include/os_stddef.h
index 1c047ac1983..33fbd350166 100644
--- a/ACE/ace/os_include/os_stddef.h
+++ b/ACE/ace/os_include/os_stddef.h
@@ -36,28 +36,6 @@ extern "C"
{
#endif /* __cplusplus */
-//FUZZ: disable check_for_NULL
-// NULL pointer constant
-#if defined (ACE_LACKS_NULL)
-# undef NULL
-# if defined(__cplusplus)
-# define NULL 0
-# else
-# define NULL ((void *)0)
-# endif
-#endif /* ACE_LACKS_NULL */
-//FUZZ: enable check_for_NULL
-
-/*
- Integer constant expression of type size_t, the value of which is the offset
- in bytes to the structure member (member-designator), from the beginning of
- its structure (type).
-*/
-#if defined (ACE_LACKS_OFFSETOF)
-# undef offsetof
-# define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
-#endif /* ACE_LACKS_OFFSETOF */
-
// Signed integer type of the result of subtracting two pointers.
#if defined (ACE_LACKS_PTRDIFF_T)
# if !defined (ACE_PTRDIFF_T_TYPE)