summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compiler.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/compiler.h b/compiler.h
index 82b0d7a..5e7e8c4 100644
--- a/compiler.h
+++ b/compiler.h
@@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------- *
*
- * Copyright 2007 The NASM Authors - All Rights Reserved
+ * Copyright 2007-2008 The NASM Authors - All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the license given in the file "LICENSE"
@@ -87,6 +87,19 @@ typedef enum bool { false, true } bool;
# endif
#endif
+/* Provide a substitute for offsetof() if we don't have one. This
+ variant works on most (but not *all*) systems... */
+#ifndef offsetof
+# define offsetof(t,m) ((size_t)&(((t *)0)->m))
+#endif
+
+/* The container_of construct: if p is a pointer to member m of
+ container class c, then return a pointer to the container of which
+ *p is a member. */
+#ifndef container_of
+# define container_of(p, c, m) ((c *)((char *)(p) - offsetof(c,m)))
+#endif
+
/* Some misguided platforms hide the defs for these */
#if defined(HAVE_STRCASECMP) && !HAVE_DECL_STRCASECMP
int strcasecmp(const char *, const char *);