diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-05-08 19:42:10 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-05-08 19:42:10 +0100 |
commit | 2e67ccde810ffbbb460ac2608e9189fb48f5f5b2 (patch) | |
tree | 39355f028c8940e618614eff6372f83529911bcd /ext | |
parent | e8cbbd22f851182aaeefe9ad42b50123e9451e21 (diff) |
raw1394: include stdlib.h for strtol()
Fixes compiler warning when compiling with xml stuff in core disabled.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/raw1394/gstdv1394src.c | 1 | ||||
-rw-r--r-- | ext/raw1394/gsthdv1394src.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ext/raw1394/gstdv1394src.c b/ext/raw1394/gstdv1394src.c index 2716f742..2e525393 100644 --- a/ext/raw1394/gstdv1394src.c +++ b/ext/raw1394/gstdv1394src.c @@ -42,6 +42,7 @@ #include <errno.h> #include <fcntl.h> #include <string.h> +#include <stdlib.h> #include <libavc1394/avc1394.h> #include <libavc1394/avc1394_vcr.h> diff --git a/ext/raw1394/gsthdv1394src.c b/ext/raw1394/gsthdv1394src.c index 4f726f8c..54900bf7 100644 --- a/ext/raw1394/gsthdv1394src.c +++ b/ext/raw1394/gsthdv1394src.c @@ -41,6 +41,7 @@ #include <errno.h> #include <fcntl.h> #include <string.h> +#include <stdlib.h> #include <libavc1394/avc1394.h> #include <libavc1394/avc1394_vcr.h> |