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

LibC: Add definition for the NI_NAMEREQD macro

This commit is contained in:
Gunnar Beutner 2021-04-14 04:31:20 +02:00 committed by Andreas Kling
parent ea6d0aa1d4
commit 7d12c08bec
2 changed files with 4 additions and 2 deletions

View file

@ -112,6 +112,7 @@ struct addrinfo {
#define NI_NUMERICHOST 1
#define NI_NUMERICSERV 2
#define NI_NAMEREQD 3
int getaddrinfo(const char* __restrict node, const char* __restrict service, const struct addrinfo* __restrict hints, struct addrinfo** __restrict res);
void freeaddrinfo(struct addrinfo* res);