diff options
Diffstat (limited to '')
-rw-r--r-- | xevents.c | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: xevents.c,v 1.48 2009/12/15 03:24:36 okan Exp $ + * $Id: xevents.c,v 1.49 2009/12/15 04:10:42 okan Exp $ */ /* @@ -24,6 +24,16 @@ * management of the xevent's. */ +#include <sys/param.h> +#include <sys/queue.h> + +#include <err.h> +#include <errno.h> +#include <stdlib.h> +#include <string.h> +#include <stdio.h> +#include <unistd.h> + #include "calmwm.h" static void xev_handle_maprequest(XEvent *); |