Renamed sockaddr struct

This commit is contained in:
Gitea 2020-12-08 18:11:56 -06:00
parent d0e4897dd1
commit 9af408a527

View file

@ -15,10 +15,10 @@
typedef long int socklen_t; typedef long int socklen_t;
#include <types/sa_family_t.h> #include <types/sa_family_t.h>
typedef struct _socket_address { struct sockaddr {
sa_family_t sa_family; sa_family_t sa_family;
char sa_data[]; char sa_data[];
} sockaddr; };
#endif #endif