diff mbox

[for-1.1] qemu-timer: Move include for __FreeBSD_version to header

Message ID 1336241320-4257-1-git-send-email-andreas.faerber@web.de
State New
Headers show

Commit Message

Andreas Färber May 5, 2012, 6:08 p.m. UTC
sys/param.h is needed for __FreeBSD_version.
Pointed out by Juergen, thanks.

Signed-off-by: Andreas Faerber <andreas.faerber@web.de>
Cc: Juergen Lock <nox@jelal.kn-bremen.de>
---
 qemu-timer.c |    4 ----
 qemu-timer.h |    4 ++++
 2 files changed, 4 insertions(+), 4 deletions(-)

Comments

Anthony Liguori May 8, 2012, 5:29 p.m. UTC | #1
On 05/05/2012 01:08 PM, Andreas Faerber wrote:
> sys/param.h is needed for __FreeBSD_version.
> Pointed out by Juergen, thanks.
>
> Signed-off-by: Andreas Faerber<andreas.faerber@web.de>
> Cc: Juergen Lock<nox@jelal.kn-bremen.de>

Applied.  Thanks.

Regards,

Anthony Liguori

> ---
>   qemu-timer.c |    4 ----
>   qemu-timer.h |    4 ++++
>   2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/qemu-timer.c b/qemu-timer.c
> index 8eadd16..970b8b4 100644
> --- a/qemu-timer.c
> +++ b/qemu-timer.c
> @@ -31,10 +31,6 @@
>
>   #include "qemu-timer.h"
>
> -#ifdef __FreeBSD__
> -#include<sys/param.h>
> -#endif
> -
>   #ifdef _WIN32
>   #include<mmsystem.h>
>   #endif
> diff --git a/qemu-timer.h b/qemu-timer.h
> index 5175419..f8af595 100644
> --- a/qemu-timer.h
> +++ b/qemu-timer.h
> @@ -5,6 +5,10 @@
>   #include "main-loop.h"
>   #include "notify.h"
>
> +#ifdef __FreeBSD__
> +#include<sys/param.h>
> +#endif
> +
>   /* timers */
>
>   #define SCALE_MS 1000000
diff mbox

Patch

diff --git a/qemu-timer.c b/qemu-timer.c
index 8eadd16..970b8b4 100644
--- a/qemu-timer.c
+++ b/qemu-timer.c
@@ -31,10 +31,6 @@ 
 
 #include "qemu-timer.h"
 
-#ifdef __FreeBSD__
-#include <sys/param.h>
-#endif
-
 #ifdef _WIN32
 #include <mmsystem.h>
 #endif
diff --git a/qemu-timer.h b/qemu-timer.h
index 5175419..f8af595 100644
--- a/qemu-timer.h
+++ b/qemu-timer.h
@@ -5,6 +5,10 @@ 
 #include "main-loop.h"
 #include "notify.h"
 
+#ifdef __FreeBSD__
+#include <sys/param.h>
+#endif
+
 /* timers */
 
 #define SCALE_MS 1000000