diff options
author | Brian McKenna <brian@brianmckenna.org> | 2017-08-03 07:03:22 +1000 |
---|---|---|
committer | Brian McKenna <brian@brianmckenna.org> | 2017-08-03 07:03:22 +1000 |
commit | b39cc4fc813adddf2c9662b2c6e9d4f5a24c0f60 (patch) | |
tree | 88191a80e3f9fbc8f4bd004961fafa46d316931b /src | |
parent | a2778988f2b70a5f000202afa7213b553350c72e (diff) |
Include missing <cstdlib> for abort()
This is needed to get Nix compiled using Android NDK.
Diffstat (limited to 'src')
-rw-r--r-- | src/libutil/sync.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/sync.hh b/src/libutil/sync.hh index 611c900e0..3b2710f6f 100644 --- a/src/libutil/sync.hh +++ b/src/libutil/sync.hh @@ -1,5 +1,6 @@ #pragma once +#include <cstdlib> #include <mutex> #include <condition_variable> #include <cassert> |