home *** CD-ROM | disk | FTP | other *** search
- /*
- (c) 1990 S.Hawtin.
- Permission is granted to copy this file provided
- 1) It is not used for commercial gain
- 2) This notice is included in all copies
- 3) Altered copies are marked as such
-
- No liability is accepted for the contents of the file.
-
- unix.h within Public Domain UNIX.lib
-
- */
-
- #ifndef _UNIX_H
- #define _UNIX_H
-
- #include <types.h>
-
- /* Set up the modes for open() and creat() */
-
- #define O_CREAT 1
-
-
- /* Define the functions within the library */
-
- extern int close();
- extern APTR creat();
- extern int getw();
- extern long lseek();
- extern APTR open();
- extern int putw();
- extern int read();
- extern long tell();
- extern int unlink();
- extern int write();
-
- #endif
-