| 87 | #endif |
| 88 | |
| 89 | void acl_lib_end(void) |
| 90 | { |
| 91 | static int __have_ended = 0; |
| 92 | |
| 93 | if (__have_ended) |
| 94 | return; |
| 95 | __have_ended = 1; |
| 96 | #if defined(ACL_WINDOWS) |
| 97 | acl_socket_end(); |
| 98 | acl_pthread_end(); |
| 99 | #endif |
| 100 | } |
| 101 | |
| 102 | int __acl_var_use_poll = 1; |
| 103 |
no test coverage detected
searching dependent graphs…