aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-curl/project/main.c
blob: 7002d697a3c0f39c87b7c938fb547560a66f72e7 (plain)
1
2
3
4
5
6
7
8
9
10
#include <curl/curl.h>

int main()
{
    CURL *curl = curl_easy_init();
    if(curl) {
        curl_easy_cleanup(curl);
    }
    return 0;
}