rizsotto / Bear

Bear is a tool that generates a compilation database for clang tooling.
GNU General Public License v3.0
4.83k stars 313 forks source link

Avoid implicit function declarations in tests, for C99 compatibility #521

Closed fweimer-rh closed 1 year ago

fweimer-rh commented 1 year ago

Include for printf and define _GNU_SOURCE for execvpe.

Future compilers will not support implicit function declartions by default, causing these tests to fail to build.

Related to:

rizsotto commented 1 year ago

Thanks @fweimer-rh for the PR!