aboutsummaryrefslogtreecommitdiff
path: root/jim.c
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2023-03-02 08:35:45 +1000
committerSteve Bennett <steveb@workware.net.au>2023-03-20 08:19:51 +1000
commit56339de8502e8838b825453668c7388bbc0d448b (patch)
treea50c96fef23b29b6dfbf81a5fce99bcff2d5f5d9 /jim.c
parentd9b7db7fc6dfffc066b521b672b2bd7c7ff212db (diff)
downloadjimtcl-56339de8502e8838b825453668c7388bbc0d448b.zip
jimtcl-56339de8502e8838b825453668c7388bbc0d448b.tar.gz
jimtcl-56339de8502e8838b825453668c7388bbc0d448b.tar.bz2
build: define _GNU_SOURCE only on the command line
Not in source files See https://ariadne.space/2021/12/21/stop-defining-feature-test-macros-in-your-code/ Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim.c')
-rw-r--r--jim.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/jim.c b/jim.c
index ea60e10..f4fd955 100644
--- a/jim.c
+++ b/jim.c
@@ -41,9 +41,6 @@
* official policies, either expressed or implied, of the Jim Tcl Project.
**/
#define JIM_OPTIMIZATION /* comment to avoid optimizations and reduce size */
-#ifndef _GNU_SOURCE
-#define _GNU_SOURCE /* Mostly just for environ */
-#endif
#include <stdio.h>
#include <stdlib.h>