From 19b612476147c1c70d72364b4f8379341f7a284c Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Tue, 18 Jan 2000 21:02:53 +0000 Subject: zsh-workers/9357 --- Src/glob.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Src/glob.c') 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) */ -- cgit 1.4.1