summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/resolv.cpp
blob: 5ece62bdfcccda84da0fc4c3cfed722d0b88febc (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;
}
}