home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / v / vim_src.zip / PTX_STDL.H < prev    next >
C/C++ Source or Header  |  1993-01-12  |  905b  |  43 lines

  1. /*
  2.  * ptx_stdlib.h: declarations which are needed for sequent
  3.  */
  4.  
  5. extern void free(void *);
  6. #ifdef SIZE_T /* sys/types.h */
  7. extern void *malloc(size_t);
  8. extern off_t lseek(int, off_t, int);
  9. #else
  10. extern void *malloc(unsigned);
  11. extern int lseek(int, int, int);
  12. #endif
  13.  
  14. #ifndef _FCNTL_H_
  15. extern int open(char *, int, ...);
  16. #endif
  17. extern int close(int);
  18. extern int read(int, char *, unsigned);
  19. extern int write(int, char *, unsigned);
  20. extern int ioctl(int, int, ...);
  21. extern int unlink(char *);
  22.  
  23. extern char *getenv(char *);
  24.  
  25. #ifdef _NFILE /* stdio.h */
  26. extern int _filbuf(FILE *);
  27. extern int _flsbuf(unsigned char, FILE *);
  28. #endif
  29.  
  30. #ifdef _POLL_H_
  31. extern int poll(struct pollfd[], unsigned long, int);
  32. #endif /* _POLL_H_ */
  33.  
  34. extern char *getcwd(char *, int);
  35.  
  36. extern int chdir(char *);
  37.  
  38. extern int atoi (char *);
  39. extern long atol(char *);
  40. extern long strtol(char *, char **, int);
  41.  
  42. extern int isatty(int);
  43.