home *** CD-ROM | disk | FTP | other *** search
- #define U_SYSV 1
- #define U_BSD43 2
- #define U_POSIX 3
-
- #define DIRN_ENTRY 0
- #define DIRN_EXIT 1
-
- #define NSYSARGS 6 /* All direct system calls */
- /* have <= NSYSARGS args. */
-
- /*
- * Structure of our version of the system-entry table.
- */
- typedef struct sysentry sysentry;
- struct sysentry
- {
- char *sy_name; /* name */
- char sy_narg; /* number of arguments */
- char *sy_desc; /* argument formats */
- char sy_rdesc; /* result format */
- int (*sy_call)(); /* handler */
- };
-