sim: Appease a few prototype warnings

This commit is contained in:
YAMAMOTO Takashi 2020-03-28 19:39:34 +09:00 committed by Abdelatif Guettouche
parent d217b3a889
commit 40d7f83e31

View File

@ -67,7 +67,7 @@ static bool g_connect_warned;
int negotiate(int fd, struct vif_info *vif); int negotiate(int fd, struct vif_info *vif);
void netdriver_setmacaddr(unsigned char *macaddr); void netdriver_setmacaddr(unsigned char *macaddr);
static int vpnkit_connect() static int vpnkit_connect(void)
{ {
struct sockaddr_un sun; struct sockaddr_un sun;
int fd; int fd;
@ -114,7 +114,7 @@ static int vpnkit_connect()
return 0; return 0;
} }
static void vpnkit_disconnect() static void vpnkit_disconnect(void)
{ {
if (g_vpnkit_fd == -1) if (g_vpnkit_fd == -1)
{ {