home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / compiler / clib / __stdio.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-17  |  438 b   |  23 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: __stdio.c,v 1.4 1997/01/17 16:23:48 digulla Exp $
  4.  
  5.     Desc: stdio internals
  6.     Lang: english
  7. */
  8. #include <stdio.h>
  9. #include <exec/lists.h>
  10.  
  11. FILE * stdin  = (FILE *)1L;
  12. FILE * stdout = (FILE *)2L;
  13. FILE * stderr = (FILE *)3L;
  14.  
  15. struct MinList __stdio_files =
  16. {
  17.     (struct MinNode *)&__stdio_files.mlh_Tail,
  18.     NULL,
  19.     (struct MinNode *)&__stdio_files
  20. };
  21.  
  22. int __stdio_fd = 4;
  23.