Define feature test macros in common.h

This enables necessary functions once for all.

As a consequence, define common.h before any other header.
This commit is contained in:
Romain Vimont 2021-01-08 19:24:51 +01:00
commit ab912c23e7
37 changed files with 77 additions and 53 deletions

View file

@ -1,11 +1,12 @@
#ifndef INPUTMANAGER_H
#define INPUTMANAGER_H
#include "common.h"
#include <stdbool.h>
#include <SDL2/SDL.h>
#include "common.h"
#include "controller.h"
#include "fps_counter.h"
#include "scrcpy.h"