mirror of
https://github.com/glfw/glfw
synced 2026-09-26 16:18:21 +03:00
Use #if !defined instead of #ifndef for consistency with wl_window.c
This commit is contained in:
parent
a7ed7a979e
commit
d42274b0e1
1 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue