aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32notify.c
diff options
context:
space:
mode:
authorPaul Eggert2016-09-17 11:05:07 -0700
committerPaul Eggert2016-09-17 11:06:05 -0700
commit7cd3d85013896dc4160f70228fc198c65a42b2e2 (patch)
treebe682d95806570eaeb1aaa7acbcff7b25e82c4c1 /src/w32notify.c
parentd7f0daf7ecaa7b138f7c66796e23fa5982b0a8bb (diff)
downloademacs-7cd3d85013896dc4160f70228fc198c65a42b2e2.tar.gz
emacs-7cd3d85013896dc4160f70228fc198c65a42b2e2.zip
Define _GNU_SOURCE in files delaying config.h
Problem reported by Richard Copley in: http://lists.gnu.org/archive/html/emacs-devel/2016-09/msg00440.html * src/w32.c, src/w32notify.c, src/w32proc.c (_GNU_SOURCE): Define early.
Diffstat (limited to 'src/w32notify.c')
-rw-r--r--src/w32notify.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/w32notify.c b/src/w32notify.c
index d4a113aaa4d..15e8a86cf17 100644
--- a/src/w32notify.c
+++ b/src/w32notify.c
@@ -81,6 +81,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
81 thread to exit. The main thread waits for some time for the worker 81 thread to exit. The main thread waits for some time for the worker
82 thread to exit, and if it doesn't, terminates it forcibly. */ 82 thread to exit, and if it doesn't, terminates it forcibly. */
83 83
84/* Enable GNU extensions in gnulib replacement headers. */
85#define _GNU_SOURCE 1
86
84#include <stddef.h> 87#include <stddef.h>
85#include <errno.h> 88#include <errno.h>
86 89