LibC: Remove debug printing from getnameinfo

This commit is contained in:
Bananymous 2025-06-02 11:37:20 +03:00
parent 317f413746
commit 5a6b43fc90
1 changed files with 1 additions and 3 deletions

View File

@ -147,11 +147,9 @@ error_close_socket:
return EAI_FAIL;
}
#include <BAN/Debug.h>
int getnameinfo(const struct sockaddr* __restrict sa, socklen_t salen, char* __restrict node, socklen_t nodelen, char* __restrict service, socklen_t servicelen, int flags)
{
printf("getnameinfo(%p, %p, %p, 0x%X)\n", sa, node, service, flags);
(void)flags;
switch (sa->sa_family)
{