diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-18 21:02:53 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-18 21:02:53 +0000 |
commit | 19b612476147c1c70d72364b4f8379341f7a284c (patch) | |
tree | 5702ac2e27582d467a6b3f3dc3860d69f29b29ec /Src/glob.c | |
parent | babfbc2a065e42c1564489685c2162a7bb65a41e (diff) | |
download | zsh-19b612476147c1c70d72364b4f8379341f7a284c.tar.gz zsh-19b612476147c1c70d72364b4f8379341f7a284c.tar.xz zsh-19b612476147c1c70d72364b4f8379341f7a284c.zip |
zsh-workers/9357
Diffstat (limited to 'Src/glob.c')
-rw-r--r-- | Src/glob.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/glob.c b/Src/glob.c index 73a752536..fc2c64cfd 100644 --- a/Src/glob.c +++ b/Src/glob.c @@ -41,13 +41,13 @@ typedef struct gmatch *Gmatch; struct gmatch { - char *name; off_t size ALIGN64; + off_t _size ALIGN64; + char *name; long atime; long mtime; long ctime; long links; - off_t _size ALIGN64; long _atime; long _mtime; long _ctime; @@ -102,10 +102,10 @@ typedef struct stat *Statptr; /* This makes the Ultrix compiler happy. Go figu typedef int (*TestMatchFunc) _((char *, struct stat *, off_t, char *)); struct qual { + off_t data ALIGN64; /* Argument passed to function */ struct qual *next; /* Next qualifier, must match */ struct qual *or; /* Alternative set of qualifiers to match */ TestMatchFunc func; /* Function to call to test match */ - off_t data ALIGN64; /* Argument passed to function */ int sense; /* Whether asserting or negating */ int amc; /* Flag for which time to test (a, m, c) */ int range; /* Whether to test <, > or = (as per signum) */ |