Merge pull request #191 from szlin/master

Fix warning of implicit declaration of function 'strcasestr'
This commit is contained in:
Arun Prakash Jana 2019-01-15 14:05:30 +05:30 committed by GitHub
commit 13fb1d8c0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,9 @@
*/
#ifdef __linux__
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#if defined(__arm__) || defined(__i386__)
#define _FILE_OFFSET_BITS 64 /* Support large files on 32-bit */
#endif