diff options
Diffstat (limited to '')
-rw-r--r-- | mousefunc.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/mousefunc.c b/mousefunc.c index f75e460..559e526 100644 --- a/mousefunc.c +++ b/mousefunc.c @@ -16,9 +16,19 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: mousefunc.c,v 1.18 2009/12/15 03:24:36 okan Exp $ + * $Id: mousefunc.c,v 1.19 2009/12/15 04:10:42 okan Exp $ */ +#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 int mousefunc_sweep_calc(struct client_ctx *, int, int, int, int); |