Use #if !defined instead of #ifndef for consistency with wl_window.c

This commit is contained in:
Alexandre Almeida 2026-08-19 21:52:19 -03:00 • committed by GitHub
parent a7ed7a979e
commit d42274b0e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,8 +26,8 @@
// It is fine to use C99 in this file because it will not be built with VS
//========================================================================
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#if !defined(_GNU_SOURCE)
#define _GNU_SOURCE
#endif
#include "internal.h"