[libc] Add `errno_h` as a dependency to `sigaddset` and `sigemptyset`.

Summary: The bots are catching this missing dependency.

Reviewers: PaulkaToast, abrachet

Subscribers: mgorny, MaskRay, tschuett, libc-commits

Tags: #libc-project

Differential Revision: https://reviews.llvm.org/D75502
This commit is contained in:
Siva Chandra Reddy 2020-03-02 23:31:03 -08:00
parent 1cb0e01e42
commit 80aba2b262
1 changed files with 2 additions and 0 deletions

View File

@ -35,6 +35,7 @@ add_entrypoint_object(
../sigemptyset.h
DEPENDS
__errno_location
errno_h
signal_h
)
@ -47,5 +48,6 @@ add_entrypoint_object(
../sigaddset.h
DEPENDS
__errno_location
errno_h
signal_h
)