Changeset 8a9cddfb29f89ab8c272465be08b0bc5f54dd896
- Timestamp:
- 05/25/10 13:11:09
(3 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1274793069 +0000
- git-parent:
[9f030e7ca5bceb39f703bb24d6fe7546e5bc7824]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1274793069 +0000
- Message:
patch from Piotr Sikora, fixes #74
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r725c93d |
r8a9cddf |
|
| 151 | 151 | #undef SIZEOF_VOID_P |
|---|
| 152 | 152 | |
|---|
| | 153 | /* The number of bytes in a void * (workaround for OpenBSD). */ |
|---|
| | 154 | #undef SIZEOF_VOID__ |
|---|
| | 155 | #if !defined(SIZEOF_VOID_P) && defined(SIZEOF_VOID__) |
|---|
| | 156 | # define SIZEOF_VOID_P SIZEOF_VOID__ |
|---|
| | 157 | #endif |
|---|
| | 158 | |
|---|
| 153 | 159 | #ifndef HAVE_U_INT |
|---|
| 154 | 160 | typedef unsigned int u_int; |
|---|