diff options
author | Brent Cook <busterb@gmail.com> | 2014-07-10 16:02:49 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2014-07-10 16:02:49 -0500 |
commit | 388a1655d4d94141a979a058e737eb573c8ed257 (patch) | |
tree | a31af90fa2d8634f4803896d1beeef007c9f7c6b /include | |
parent | d81b9bda51f972d5d54cb4ff4a8d1aaa7e626f9e (diff) | |
download | portable-388a1655d4d94141a979a058e737eb573c8ed257.tar.gz portable-388a1655d4d94141a979a058e737eb573c8ed257.tar.bz2 portable-388a1655d4d94141a979a058e737eb573c8ed257.zip |
better fix for __bounded removal
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/types.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sys/types.h b/include/sys/types.h index 05fc05b..3904bcb 100644 --- a/include/sys/types.h +++ b/include/sys/types.h | |||
@@ -10,4 +10,8 @@ typedef uint8_t u_int8_t; | |||
10 | typedef uint32_t u_int32_t; | 10 | typedef uint32_t u_int32_t; |
11 | #endif | 11 | #endif |
12 | 12 | ||
13 | #if !defined(HAVE_ATTRIBUTE__BOUNDED__) && !defined(__bounded__) | ||
14 | # define __bounded__(x, y, z) | ||
15 | #endif | ||
16 | |||
13 | #endif | 17 | #endif |