diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-10-04 11:05:13 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-10-04 11:05:13 +0300 |
commit | 8111eca142100dd5a9e9fc11a29e750b0ccbe31a (patch) | |
tree | 31b600703dc306cc095359fc900ebb78691a0fbe /extension/gawkfts.h | |
parent | 6d5c1e1d38f71fdfc1794b5b3723a6e476ffddf4 (diff) | |
parent | 97c4e427ab48d4e45889ca74abb0701a049d7606 (diff) | |
download | egawk-8111eca142100dd5a9e9fc11a29e750b0ccbe31a.tar.gz egawk-8111eca142100dd5a9e9fc11a29e750b0ccbe31a.tar.bz2 egawk-8111eca142100dd5a9e9fc11a29e750b0ccbe31a.zip |
Merge branch 'feature/zOS-try2' into gawk-4.1-stable
Diffstat (limited to 'extension/gawkfts.h')
-rw-r--r-- | extension/gawkfts.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/extension/gawkfts.h b/extension/gawkfts.h index f1ca26f5..447b1758 100644 --- a/extension/gawkfts.h +++ b/extension/gawkfts.h @@ -45,7 +45,7 @@ # endif #endif -#ifdef ZOS_USS +#ifdef __MVS__ #include <limits.h> #define MAXPATHLEN FILENAME_MAX #endif @@ -81,11 +81,7 @@ typedef struct _ftsent { struct _ftsent *fts_cycle; /* cycle node */ struct _ftsent *fts_parent; /* parent directory */ struct _ftsent *fts_link; /* next file in directory */ -#ifdef ZOS_USS - long fts_number; /* local numeric value */ -#else - long long fts_number; /* local numeric value */ -#endif + long long fts_number; /* local numeric value */ void *fts_pointer; /* local address value */ char *fts_accpath; /* access path */ char *fts_path; /* root path */ |