home *** CD-ROM | disk | FTP | other *** search
- #ifndef CONF_UOFILE_H
- #define CONF_UOFILE_H
-
- #include "confopalf.h"
- #include "confodofe.h"
-
- #ifdef DYNIX
- #ifdef ODOFE
- #define UOFILE(u,n) ((u)->u_lofile[0].of_file)
- #define NUOFILE(u) ((u)->u_nofile)
- #else
- #define UOFILE(u,n) ((u)->u_lofile[n].of_file)
- #define NUOFILE(u) ((u)->u_nofile)
- #endif
- #else
- #ifdef CONVEX
- #define UOFILE(u,n) ((u)->u_fd[n].ofile)
- #define NUOFILE(u) NOFILE
- #else
- #ifdef OPALF
- #define UOFILE(u,n) ((u)->u_ofile[n])
- #define NUOFILE(u) ((u)->u_lastfile + 1)
- #else
- #define UOFILE(u,n) ((u)->u_ofile[n])
- #define NUOFILE(u) NOFILE
- #endif
- #endif
- #endif
-
- #endif
-