diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-10 11:34:06 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-10 11:34:06 +0000 |
commit | cd44ac2b6b350bf66bc575053c7a7e7622c91e9c (patch) | |
tree | 4b64edab70d60811b82bb3f8405af11313135761 /src/libbiguint/bu_copy.c | |
parent | b50873653627be1bd12ae070667cb919d667a39a (diff) | |
download | skalibs-cd44ac2b6b350bf66bc575053c7a7e7622c91e9c.tar.xz |
Add guards around EOVERFLOW defines. (Thanks, OpenBSD)
Diffstat (limited to 'src/libbiguint/bu_copy.c')
-rw-r--r-- | src/libbiguint/bu_copy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libbiguint/bu_copy.c b/src/libbiguint/bu_copy.c index 1358aca..aff6e51 100644 --- a/src/libbiguint/bu_copy.c +++ b/src/libbiguint/bu_copy.c @@ -1,7 +1,9 @@ /* ISC license. */ /* OpenBSD needs that for EOVERFLOW. wtfbsdseriously */ +#ifndef _BSD_SOURCE #define _BSD_SOURCE +#endif #include <errno.h> #include <skalibs/uint32.h> |