1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-02 20:00:57 +02:00

zsh-workers/9357

This commit is contained in:
Tanaka Akira 2000-01-18 21:02:53 +00:00
parent babfbc2a06
commit 19b6124761

View file

@ -41,13 +41,13 @@
typedef struct gmatch *Gmatch; typedef struct gmatch *Gmatch;
struct gmatch { struct gmatch {
char *name;
off_t size ALIGN64; off_t size ALIGN64;
off_t _size ALIGN64;
char *name;
long atime; long atime;
long mtime; long mtime;
long ctime; long ctime;
long links; long links;
off_t _size ALIGN64;
long _atime; long _atime;
long _mtime; long _mtime;
long _ctime; 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 *)); typedef int (*TestMatchFunc) _((char *, struct stat *, off_t, char *));
struct qual { struct qual {
off_t data ALIGN64; /* Argument passed to function */
struct qual *next; /* Next qualifier, must match */ struct qual *next; /* Next qualifier, must match */
struct qual *or; /* Alternative set of qualifiers to match */ struct qual *or; /* Alternative set of qualifiers to match */
TestMatchFunc func; /* Function to call to test match */ TestMatchFunc func; /* Function to call to test match */
off_t data ALIGN64; /* Argument passed to function */
int sense; /* Whether asserting or negating */ int sense; /* Whether asserting or negating */
int amc; /* Flag for which time to test (a, m, c) */ int amc; /* Flag for which time to test (a, m, c) */
int range; /* Whether to test <, > or = (as per signum) */ int range; /* Whether to test <, > or = (as per signum) */