summaryrefslogtreecommitdiff
path: root/cmd/main.c
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2021-11-21 15:58:10 -0500
committerRobby Zambito <contact@robbyzambito.me>2021-11-21 15:58:10 -0500
commitc0416078cb2ef3b670445b43bdfebeced28de108 (patch)
treeaf3628cd40e13be5352ccd584daa8ef1b5fea425 /cmd/main.c
parent2a2894dadd091c64cdc26b17e779b7daca91d17d (diff)
Added _GNU_SOURCE to every file
We are not aiming for high portability with this program. Anywhere that Guile is available, we should be able to access _GNU_SOURCE extensions.
Diffstat (limited to 'cmd/main.c')
-rw-r--r--cmd/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/main.c b/cmd/main.c
index 51a4e62..abb433f 100644
--- a/cmd/main.c
+++ b/cmd/main.c
@@ -16,6 +16,8 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
+#define _GNU_SOURCE
+
#include <libguile.h>
#include <stdbool.h>
#include <stdio.h>