diff options
author | 2019-01-15 14:05:30 +0530 | |
---|---|---|
committer | 2019-01-15 14:05:30 +0530 | |
commit | 13fb1d8c0e2ec94138a98d136b6824630eb36a43 (patch) | |
tree | 51e9cd042808aa4229abeb492ad843c1442573fa | |
parent | 389180d13981f8c21424cd88b4cec0af79b55dcd (diff) | |
parent | cbef31ce25d92fa3d58054328b21d5616bb57310 (diff) | |
download | nnn-13fb1d8c0e2ec94138a98d136b6824630eb36a43.tar.gz |
Merge pull request #191 from szlin/master
Fix warning of implicit declaration of function 'strcasestr'
-rw-r--r-- | src/nnn.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |