readdir.m4
来自「开源备份软件源码 AMANDA, the Advanced Marylan」· M4 代码 · 共 33 行
M4
33 行
# SYNOPSIS## AMANDA_CHECK_READDIR## OVERVIEW## Check for one of the readdir variants, as well as the dirent headers.# See common-src/util.c and amanda.h for the use of these symbols.#AC_DEFUN([AMANDA_CHECK_READDIR], [ AC_HEADER_DIRENT # include the dirent headers as described in the autoconf documentation. AC_CHECK_DECLS([readdir, readdir_r, readdir64, readdir64_r],,,[#if HAVE_DIRENT_H# include <dirent.h># define NAMLEN(dirent) strlen((dirent)->d_name)#else# define dirent direct# define NAMLEN(dirent) (dirent)->d_namlen# if HAVE_SYS_NDIR_H# include <sys/ndir.h># endif# if HAVE_SYS_DIR_H# include <sys/dir.h># endif# if HAVE_NDIR_H# include <ndir.h># endif#endif ])])
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?