diff options
| author | christos <christos@NetBSD.org> | 2011-06-26 12:14:59 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2011-06-26 12:14:59 +0000 |
| commit | 94155ac61cd03a1bb5123de660e19bd641303c4b (patch) | |
| tree | e2d3a6d124b97d67f562de3c1c8b3adbe60e1216 /tests/dev/sysmon | |
| parent | 66a53fd63c77c24c1191628c5960cda40d0f1f91 (diff) | |
need signal.h for kill()
this is why it was wrong for rump_syscalls.h to include this.
Diffstat (limited to 'tests/dev/sysmon')
| -rw-r--r-- | tests/dev/sysmon/t_swwdog.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/dev/sysmon/t_swwdog.c b/tests/dev/sysmon/t_swwdog.c index 82e81a5d78b..19e3795f0b5 100644 --- a/tests/dev/sysmon/t_swwdog.c +++ b/tests/dev/sysmon/t_swwdog.c @@ -1,4 +1,4 @@ -/* $NetBSD: t_swwdog.c,v 1.4 2010/10/24 13:16:12 pgoyette Exp $ */ +/* $NetBSD: t_swwdog.c,v 1.5 2011/06/26 12:14:59 christos Exp $ */ /* * Copyright (c) 2010 Antti Kantee. All Rights Reserved. @@ -38,6 +38,7 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <signal.h> #include <rump/rump.h> #include <rump/rump_syscalls.h> |
