diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2014-02-17 17:10:41 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2014-02-17 17:10:41 +0000 |
| commit | 526d99544ba42a5a2155021975b3b97da425819e (patch) | |
| tree | f33eb960cbd87cb5fa516e45153eb6351dc8ea2e /source/include/acmacros.h | |
| parent | 7bf0bd8c239ae7e6cb5c98382db85377146519d6 (diff) | |
Diffstat (limited to 'source/include/acmacros.h')
| -rw-r--r-- | source/include/acmacros.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/include/acmacros.h b/source/include/acmacros.h index 19a3e8e23542..1212d0516b9f 100644 --- a/source/include/acmacros.h +++ b/source/include/acmacros.h @@ -45,6 +45,8 @@ #define __ACMACROS_H__ +#pragma pack(push) /* Set default struct packing */ + /* * Extract data using a pointer. Any more than a byte and we * get into potential aligment issues -- see the STORE macros below. @@ -433,4 +435,6 @@ #define ACPI_IS_OCTAL_DIGIT(d) (((char)(d) >= '0') && ((char)(d) <= '7')) +#pragma pack(pop) /* Restore original struct packing */ + #endif /* ACMACROS_H */ |
