1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:07:35 +00:00

LibC: Add stub for res_query

This commit is contained in:
Kenneth Myhra 2021-08-11 19:33:26 +02:00 committed by Linus Groh
parent 8abfcb976d
commit 04733ccb56
3 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,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;
}
}