asc2log: add _GNU_SOURCE define

Needed for strcasestr under musl.
pull/326/head
Rosen Penev 2021-12-15 18:03:39 -08:00 committed by GitHub
parent a705182b28
commit c4e3347b48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -42,6 +42,10 @@
*
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <libgen.h>
#include <locale.h>
#include <stdio.h>