2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00
kea/compiler-checks/have-optreset.cc

8 lines
91 B
C++
Raw Normal View History

2025-02-15 10:05:31 +01:00
#include <unistd.h>
int main() {
extern int optreset;
optreset=1;
return 0;
}