瀏覽代碼

Fix warning of implicit declaration of function 'strcasestr'

According to manpage of strcasestr [1], the macro function needs to be added.

[1] https://linux.die.net/man/3/strcasestr

Signed-off-by: SZ Lin (林上智) <szlin@debian.org>
master
SZ Lin (林上智) 6 年之前
父節點
當前提交
cbef31ce25
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. +3
    -0
      src/nnn.c

+ 3
- 0
src/nnn.c 查看文件

@@ -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


Loading…
取消
儲存