diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2010-04-09 07:16:07 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:14:00 +0000 |
commit | 600d005d49301ddd53415f53ee43606d355d4d9d (patch) | |
tree | 9aecf90f699477bb14582992d49c39a66f4d412c /UICaboodle/UCPlatform.h | |
parent | 58241d4c4095098de7f80960bd3c9dc85fed9c46 (diff) |
Scrollers and keyboards and things.
Diffstat (limited to 'UICaboodle/UCPlatform.h')
-rw-r--r-- | UICaboodle/UCPlatform.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/UICaboodle/UCPlatform.h b/UICaboodle/UCPlatform.h index 2506a5d..4f2169e 100644 --- a/UICaboodle/UCPlatform.h +++ b/UICaboodle/UCPlatform.h @@ -43,9 +43,9 @@ while (false) #define _label _label_(__LINE__) #define _packed \ - __attribute__((packed)) - -#define _finline inline __attribute__((always_inline)) + __attribute__((__packed__)) +#define _finline \ + inline __attribute__((__always_inline__)) #define _assume(e) \ _assert(e) |