config: add/fix include guards where missing/broken

Signed-off-by: Mike Gelfand <mikedld@mikedld.com>
This commit is contained in:
Mike Gelfand 2025-06-24 22:50:19 +01:00 committed by Enrico Weigelt
parent b5d569a884
commit 7fbd8db7a4

View File

@ -23,6 +23,9 @@
* Author: Daniel Stone <daniel@fooishbar.org> * Author: Daniel Stone <daniel@fooishbar.org>
*/ */
#ifndef XSERVER_CONFIG_BACKENDS_H
#define XSERVER_CONFIG_BACKENDS_H
#ifdef HAVE_DIX_CONFIG_H #ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h> #include <dix-config.h>
#endif #endif
@ -44,3 +47,5 @@ void config_hal_fini(void);
int config_wscons_init(void); int config_wscons_init(void);
void config_wscons_fini(void); void config_wscons_fini(void);
#endif #endif
#endif /* XSERVER_CONFIG_BACKENDS_H */