diff options
author | Stéphane Aulery <saulery@free.fr> | 2014-11-27 14:52:11 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-12-04 10:23:33 +0100 |
commit | 582a2070a7f792f044fd1ee07a8e0bcfbfa32ee4 (patch) | |
tree | d2b31de574dbb0de144831962eac6a7e1d1eceb1 /rd | |
parent | 91674805aedfb63984a0e1d02b4bb05546ab3db2 (diff) | |
download | fbida-582a2070a7f792f044fd1ee07a8e0bcfbfa32ee4.tar.gz |
Add missing stddef.h header
- misc.h use offsetof()
- other use NUUL, size_t and wchar_t
Signed-off-by: Stéphane Aulery <saulery@free.fr>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'rd')
-rw-r--r-- | rd/magick.c | 1 | ||||
-rw-r--r-- | rd/read-bmp.c | 1 | ||||
-rw-r--r-- | rd/read-gif.c | 1 | ||||
-rw-r--r-- | rd/read-pcd.c | 1 | ||||
-rw-r--r-- | rd/read-png.c | 1 | ||||
-rw-r--r-- | rd/read-ppm.c | 1 | ||||
-rw-r--r-- | rd/read-tiff.c | 1 | ||||
-rw-r--r-- | rd/read-webp.c | 1 | ||||
-rw-r--r-- | rd/read-xpm.c | 1 |
9 files changed, 9 insertions, 0 deletions
diff --git a/rd/magick.c b/rd/magick.c index f17e5e3..e8a0caf 100644 --- a/rd/magick.c +++ b/rd/magick.c @@ -1,5 +1,6 @@ #include <stdio.h> #include <stdlib.h> +#include <stddef.h> #include <magick/api.h> #include "loader.h" diff --git a/rd/read-bmp.c b/rd/read-bmp.c index 30b5574..55d8c33 100644 --- a/rd/read-bmp.c +++ b/rd/read-bmp.c @@ -1,5 +1,6 @@ #include <stdio.h> #include <stdlib.h> +#include <stddef.h> #include <string.h> #include <errno.h> #ifdef HAVE_ENDIAN_H diff --git a/rd/read-gif.c b/rd/read-gif.c index 2ea2947..27c53a8 100644 --- a/rd/read-gif.c +++ b/rd/read-gif.c @@ -1,5 +1,6 @@ #include <stdio.h> #include <stdlib.h> +#include <stddef.h> #include <string.h> #include <gif_lib.h> diff --git a/rd/read-pcd.c b/rd/read-pcd.c index 40c43d5..7f3c95e 100644 --- a/rd/read-pcd.c +++ b/rd/read-pcd.c @@ -1,5 +1,6 @@ #include <stdio.h> #include <stdlib.h> +#include <stddef.h> #include <string.h> #include <errno.h> #include "pcd.h" diff --git a/rd/read-png.c b/rd/read-png.c index 990ce7e..f06ed6d 100644 --- a/rd/read-png.c +++ b/rd/read-png.c @@ -1,5 +1,6 @@ #include <stdio.h> #include <stdlib.h> +#include <stddef.h> #include <string.h> #include <errno.h> #include <png.h> diff --git a/rd/read-ppm.c b/rd/read-ppm.c index bdfea1f..3806747 100644 --- a/rd/read-ppm.c +++ b/rd/read-ppm.c @@ -1,5 +1,6 @@ #include <stdio.h> #include <stdlib.h> +#include <stddef.h> #include <string.h> #include <errno.h> diff --git a/rd/read-tiff.c b/rd/read-tiff.c index b88b10c..0742178 100644 --- a/rd/read-tiff.c +++ b/rd/read-tiff.c @@ -1,5 +1,6 @@ #include <stdio.h> #include <stdlib.h> +#include <stddef.h> #include <string.h> #include <inttypes.h> #include <tiffio.h> diff --git a/rd/read-webp.c b/rd/read-webp.c index 0dfe372..6682a3b 100644 --- a/rd/read-webp.c +++ b/rd/read-webp.c @@ -1,5 +1,6 @@ #include <stdlib.h> #include <stdio.h> +#include <stddef.h> #include <errno.h> #include <webp/decode.h> diff --git a/rd/read-xpm.c b/rd/read-xpm.c index affdce6..61e33da 100644 --- a/rd/read-xpm.c +++ b/rd/read-xpm.c @@ -1,5 +1,6 @@ #include <stdio.h> #include <stdlib.h> +#include <stddef.h> #include <string.h> #include <errno.h> |