Added SILC Server library.
[silc.git] / lib / silcutil / unix / silcunixutil.c
index 300beff0b391571d13d637c87de9ec13d3c46a9b..15356c52b92b474f40b0f5e01c27a709920ad948 100644 (file)
@@ -22,7 +22,7 @@
  */
 /* $Id$ */
 
-#include "silcincludes.h"
+#include "silc.h"
 
 /* XXX lib/contrib/regex.c might cmopile on WIN32 as well */
 
@@ -176,3 +176,9 @@ int silc_gettimeofday(struct timeval *p)
 {
   return gettimeofday(p, NULL);
 }
+
+int silc_file_set_nonblock(int fd)
+{
+  return fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) | O_NONBLOCK);
+}
+