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
2025-03-13 18:03:37 +01:00

9 lines
174 B
C++

#include <mysql.h>
int foo(MYSQL handle, unsigned int timeout) {
return (mysql_get_option(&handle, MYSQL_OPT_CONNECT_TIMEOUT, &timeout));
}
int main() {
return 0;
}