2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-29 19:52:13 +00:00

sighandler_t is glibc specific type.

This commit is contained in:
Kohei Takahashi
2017-02-19 19:50:51 +09:00
parent 4f46f43387
commit 8729f409f3

View File

@@ -16,7 +16,7 @@
namespace boost { namespace process { namespace detail { namespace posix {
#if ! defined (__APPLE__)
#if defined(__GLIBC__)
using sighandler_t = ::sighandler_t;
#else
using sighandler_t = void(*)(int);