summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/stddef.h4
-rw-r--r--include/struct.h6
2 files changed, 9 insertions, 1 deletions
diff --git a/include/stddef.h b/include/stddef.h
index 38a7736..feeebc9 100644
--- a/include/stddef.h
+++ b/include/stddef.h
@@ -31,6 +31,8 @@
* SUCH DAMAGE.
*
* @(#)stddef.h 8.1 (Berkeley) 6/2/93
+ *
+ * $FreeBSD$
*/
#ifndef _STDDEF_H_
@@ -61,6 +63,6 @@ typedef _BSD_WCHAR_T_ wchar_t;
#define NULL 0
#endif
-#define offsetof(type, member) ((size_t)(&((type *)0)->member))
+#define offsetof(type, member) __offsetof(type, member)
#endif /* _STDDEF_H_ */
diff --git a/include/struct.h b/include/struct.h
index f80ecd0..c32ec28 100644
--- a/include/struct.h
+++ b/include/struct.h
@@ -31,11 +31,17 @@
* SUCH DAMAGE.
*
* @(#)struct.h 8.1 (Berkeley) 6/2/93
+ *
+ * $FreeBSD$
*/
#ifndef _STRUCT_H_
#define _STRUCT_H_
+#if __GNUC__
+#warning "this file includes <struct.h> which is deprecated, use <stddef.h> instead"
+#endif
+
/* Offset of the field in the structure. */
#define fldoff(name, field) \
((int)&(((struct name *)0)->field))
OpenPOWER on IntegriCloud