commit | c4b17383691c2abd83560398275f0dfd139bdcba | [log] [tgz] |
---|---|---|
author | David Benjamin <davidben@google.com> | Thu Oct 26 14:15:34 2023 -0400 |
committer | Boringssl LUCI CQ <boringssl-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Oct 26 18:29:37 2023 +0000 |
tree | f00ba45927e2b7ee7369be5395c5c1a9d62a2724 | |
parent | ec87e1a7672044cbd7d484f2478cd618a7f1f81a [diff] |
Add missing include for waitpid waitpid is defined in <sys/wait.h>. Reportedly FreeBSD cares about this. Fixed: 664 Change-Id: I05be6aa50f97dec3ef7098480b8207cffc73e7a2 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/63705 Commit-Queue: David Benjamin <davidben@google.com> Reviewed-by: Adam Langley <agl@google.com> Auto-Submit: David Benjamin <davidben@google.com> Commit-Queue: Adam Langley <agl@google.com>
diff --git a/crypto/fipsmodule/rand/fork_detect_test.cc b/crypto/fipsmodule/rand/fork_detect_test.cc index b93126b..f51530a 100644 --- a/crypto/fipsmodule/rand/fork_detect_test.cc +++ b/crypto/fipsmodule/rand/fork_detect_test.cc
@@ -23,6 +23,7 @@ #include <inttypes.h> #include <stdio.h> #include <string.h> +#include <sys/wait.h> #include <unistd.h> #include <functional>