Drop dependency on <ansi.h> in modules+headers; assume that compiler knows ANSI C89. Add missing dependency from print to string; #include <ack_string.h>. Because <print.h> had commented out the declarations of sys_lock() and sys_unlock(), I now stop building lock.c and unlock.c.
64 lines
1.4 KiB
C
64 lines
1.4 KiB
C
/*
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
/* RCS: $Id$ */
|
|
#ifndef __SYSTEM_INCLUDED__
|
|
#define __SYSTEM_INCLUDED__
|
|
|
|
struct _sys_fildes {
|
|
int o_fd; /* UNIX filedescriptor */
|
|
int o_flags; /* flags for open; 0 if not used */
|
|
};
|
|
|
|
typedef struct _sys_fildes File;
|
|
|
|
extern File _sys_ftab[];
|
|
|
|
/* flags for sys_open() */
|
|
#define OP_READ 01
|
|
#define OP_WRITE 02
|
|
#define OP_APPEND 04
|
|
|
|
/* flags for sys_access() */
|
|
#define AC_EXIST 00
|
|
#define AC_READ 04
|
|
#define AC_WRITE 02
|
|
#define AC_EXEC 01
|
|
|
|
/* flags for sys_stop() */
|
|
#define S_END 0
|
|
#define S_EXIT 1
|
|
#define S_ABORT 2
|
|
|
|
int sys_open(char *, int, File **);
|
|
void sys_close(File *);
|
|
int sys_read(File *, char *, int, int *);
|
|
int sys_write(File *, char *, int);
|
|
int sys_seek(File *, long, int, long *);
|
|
int sys_reset(File *);
|
|
int sys_access(char *, int);
|
|
int sys_remove(char *);
|
|
int sys_rename(char *, char *);
|
|
long sys_filesize(char *);
|
|
int sys_chmode(char *, int);
|
|
#if 0
|
|
int sys_lock(char *);
|
|
int sys_unlock(char *);
|
|
#endif
|
|
char *sys_break(int);
|
|
void sys_stop(int);
|
|
long sys_modtime(char *);
|
|
|
|
/* standard file decsriptors */
|
|
#define STDIN &_sys_ftab[0]
|
|
#define STDOUT &_sys_ftab[1]
|
|
#define STDERR &_sys_ftab[2]
|
|
|
|
/* maximum number of open files */
|
|
#define SYS_NOPEN 20
|
|
|
|
/* return value for sys_break */
|
|
#define ILL_BREAK ((char *)0)
|
|
|
|
#endif /* __SYSTEM_INCLUDED__ */
|