diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-27 11:21:51 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-27 11:21:51 +0200 |
commit | 28e8a885bf3f5c69c0cb98cdd92a73216f0135a4 (patch) | |
tree | a0199494b3d6f2ea595a4c5550a58c30edfd3d3f /extension/gawkfts.c | |
parent | d20231532ba6a11a5b37c064a31a0c9e50b13724 (diff) | |
download | egawk-28e8a885bf3f5c69c0cb98cdd92a73216f0135a4.tar.gz egawk-28e8a885bf3f5c69c0cb98cdd92a73216f0135a4.tar.bz2 egawk-28e8a885bf3f5c69c0cb98cdd92a73216f0135a4.zip |
More portability work: dirfd in extensions.
Diffstat (limited to 'extension/gawkfts.c')
-rw-r--r-- | extension/gawkfts.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/gawkfts.c b/extension/gawkfts.c index e70a154b..250b13c0 100644 --- a/extension/gawkfts.c +++ b/extension/gawkfts.c @@ -59,6 +59,8 @@ static char sccsid[] = "@(#)fts.c 8.6 (Berkeley) 8/14/94"; #include <string.h> #include <unistd.h> +#include "gawkdirfd.h" + #if ! defined(S_ISREG) && defined(S_IFREG) #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) #endif |