home *** CD-ROM | disk | FTP | other *** search
/ MACD 4 / MACD4.iso / Emulatory / AROS / include / stdio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1978-03-06  |  427 b   |  27 lines

  1. #ifndef _STDIO_H
  2. #define _STDIO_H
  3.  
  4. /*
  5.     (C) 1995-96 AROS - The Amiga Replacement OS
  6.     $Id: stdio.h,v 1.1 1996/10/15 15:46:06 digulla Exp $
  7.  
  8.     Desc: ANSI-C header file stdio.h
  9.     Lang: english
  10. */
  11.  
  12. #ifndef NULL
  13. #ifdef __cplusplus
  14. #define NULL 0
  15. #else
  16. #define NULL (void*)0
  17. #endif /* __cplusplus */
  18. #endif /* NULL */
  19.  
  20. #ifndef EOF
  21. #define EOF (-1)
  22. #endif
  23.  
  24. extern int printf (const char* format, ...);
  25.  
  26. #endif /* _STDIO_H */
  27.