mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Merge pull request #191 from szlin/master
Fix warning of implicit declaration of function 'strcasestr'
This commit is contained in:
commit
13fb1d8c0e
|
@ -29,6 +29,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
|
#ifndef _GNU_SOURCE
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#endif
|
||||||
#if defined(__arm__) || defined(__i386__)
|
#if defined(__arm__) || defined(__i386__)
|
||||||
#define _FILE_OFFSET_BITS 64 /* Support large files on 32-bit */
|
#define _FILE_OFFSET_BITS 64 /* Support large files on 32-bit */
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue