Introduction
Introduction Statistics Contact Development Disclaimer Help
Use poll.h not sys/poll.h - sdhcp - simple dhcp client
git clone git://git.codemadness.org/sdhcp
Log
Files
Refs
LICENSE
---
commit 26f8405cf619f67a76b170480efbcc1defa04c46
parent a91f359dd69354befd8c70a89e0effd8891e1644
Author: sin <[email protected]>
Date: Wed, 5 Mar 2014 16:51:33 +0000
Use poll.h not sys/poll.h
Diffstat:
M sdhcp.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
---
diff --git a/sdhcp.c b/sdhcp.c
@@ -4,7 +4,7 @@
#include<net/if.h>
#include<net/route.h>
#include<signal.h>
-#include<sys/poll.h>
+#include<poll.h>
#include<errno.h>
#include<fcntl.h>
#include<stdio.h>
@@ -434,4 +434,3 @@ main(int argc, char *argv[])
run();
return 0;
}
-
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.