composite: move include guards up to wrap the whole file

See: https://gcc.gnu.org/onlinedocs/cppinternals/Guard-Macros.html
Signed-off-by: Mike Gelfand <mikedld@mikedld.com>
This commit is contained in:
Mike Gelfand
2025-06-23 22:17:37 +01:00
committed by Enrico Weigelt
parent d7e0b9e5c2
commit c662acf4cc
2 changed files with 6 additions and 6 deletions

View File

@@ -41,13 +41,13 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef _COMPINT_H_
#define _COMPINT_H_
#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif
#ifndef _COMPINT_H_
#define _COMPINT_H_
#include "dix/screen_hooks_priv.h"
#include "misc.h"