2008-06-21 Eric Blake <ebb9@byu.net>
+ Fix nanosleep module on mingw.
+ * modules/nanosleep (Depends-on): Add sys_select.
+ * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
+
Fix licensing of sigprocmask.
* modules/raise (License): Relicense as LGPL.
/* Provide a replacement for the POSIX nanosleep function.
- Copyright (C) 1999, 2000, 2002, 2004, 2005, 2006, 2007 Free
+ Copyright (C) 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free
Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
#include <stdbool.h>
#include <stdio.h>
#include <sys/types.h>
-#if HAVE_SYS_SELECT_H
-# include <sys/select.h>
-#endif
+#include <sys/select.h>
#include <signal.h>
#include <sys/time.h>