Skip to content

configure: Avoid exit() when checking for __sync_sub_and_fetch()

Use of exit() requires a stdlib.h include. This check was failing for me since the compiler defaulted to -Werror=implicit-function-declaration, so __sync_sub_and_fetch() support was not dectected.

Merge request reports