Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

14 lines
245 B
C

// netdb.h
// Copyright (c) 2022/10/19 Noah Treuhaft <noah@brimdata.io>
// License open source MIT
#ifndef netdb_h
#define netdb_h
#include <unistd.h>
#include "cfunc.h"
CFUNC struct hostent *gethostbyname2(const char *name, int af);
#endif