summaryrefslogtreecommitdiff
path: root/test cases/common/183 partial dependency/external_dependency/link.c
blob: dae5561e14eb275e0c28446f4d6c0426e69a8afe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright © 2024 Intel Corporation
 */

#include <zlib.h>
#include <string.h>

int main(void) {
    const char * zver = zlibVersion();
    return strcmp(zver, ZLIB_VERSION);
}