ladybird/Userland/Libraries/LibC/resolv.cpp

18 lines
281 B
C++
Raw Normal View History

2021-08-11 19:33:26 +02:00
/*
* Copyright (c) 2021, the SerenityOS developers.
2021-08-11 19:33:26 +02:00
*
* 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;
}
}