summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/resolv.cpp
blob: e69dab3cb0d5a7f30d58c671c959fdf8f1172d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2021, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <AK/Format.h>
#include <resolv.h>

extern "C" {

int res_query(char const*, int, int, unsigned char*, int)
{
    dbgln("FIXME: Implement res_query()");
    return 0;
}
}