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

9 lines
174 B
C++
Raw Permalink Normal View History

2025-03-11 02:11:27 +01:00
#include <mysql.h>
int foo(MYSQL handle, unsigned int timeout) {
return (mysql_get_option(&handle, MYSQL_OPT_CONNECT_TIMEOUT, &timeout));
}
int main() {
return 0;
}