syntax-check: Add missing #include <config.h>

This commit is contained in:
Christophe Fergeau 2015-10-07 17:16:25 +02:00
parent bb165ac3ab
commit 80c3b866ff
3 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,6 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include "common/log.h"

View File

@ -1,3 +1,6 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "spice_image_cache.h"
static ImageCacheItem *image_cache_find(ImageCache *cache, uint64_t id)

View File

@ -1,6 +1,10 @@
/* Replay a previously recorded file (via SPICE_WORKER_RECORD_FILENAME)
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include <stdlib.h>
#include <stdio.h>