ladybird/Userland/Libraries/LibC/resolv.cpp
2021-08-14 22:32:00 +01:00

18 lines
280 B
C++

/*
* 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;
}
}