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

This commit is contained in:
Christophe Fergeau 2015-10-07 17:16:25 +02:00
parent 31eb8eeecb
commit c0b2b1fc49
4 changed files with 14 additions and 0 deletions

View File

@ -14,6 +14,10 @@
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "pixmap-cache.h"
int pixmap_cache_unlocked_set_lossy(PixmapCache *cache, uint64_t id, int lossy)

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>