home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / apache / files / ActivePerl-5.6.1.638-MSWin32-x86.msi / _09db2f60aa78665738cb052c520027e4 < prev    next >
Encoding:
Text File  |  2004-04-13  |  1.8 KB  |  81 lines

  1. #ifdef NEED_REAL_STDIO
  2. #include <stdio.h>
  3. #else
  4. #if !defined(_STDIO_INCLUDED) && \
  5.     !defined(_stdio_h) && \
  6.     !defined(__STDIO_H__) && \
  7.     !defined(_h_stdio_) && \
  8.     !defined(_included_stdio) && \
  9.     !defined(_H_STDIO_) && \
  10.     !defined(_STDIO_H) && \
  11.     !defined(_FILEDEFED) && \
  12.     !defined(_INCLUDED_STDIO) && \
  13.     !defined(_STDIO_H_) && \
  14.     !defined(__STDIO_H) && \
  15.     !defined(__STDIO_LOADED) && \
  16.     !defined(_H_STDIO) && \
  17.     !defined(_INC_STDIO) && \
  18.     !defined(__h_stdio__) && \
  19.     !defined(STDIO_H) && \
  20.     !defined(_stdio_h_) && \
  21.     !defined(__stdio_h__) && \
  22.     !defined(_stdio_included) && \
  23.     !defined(_h_stdio) && \
  24.     !defined(__H_STDIO__) && \
  25.     !defined(FILE)
  26. #define _STDIO_INCLUDED
  27. #define _stdio_h
  28. #define __STDIO_H__
  29. #define _h_stdio_
  30. #define _included_stdio
  31. #define _H_STDIO_
  32. #define _STDIO_H
  33. #define _FILEDEFED
  34. #define _INCLUDED_STDIO
  35. #define _STDIO_H_
  36. #define __STDIO_H
  37. #define __STDIO_LOADED
  38. #define _H_STDIO
  39. #define _INC_STDIO
  40. #define __h_stdio__
  41. #define STDIO_H
  42. #define _stdio_h_
  43. #define __stdio_h__
  44. #define _stdio_included
  45. #define _h_stdio
  46. #define __H_STDIO__
  47. #define _FILEDEFED
  48. #undef FILE
  49. struct _FILE;
  50. #define FILE struct _FILE
  51. EXTERN int printf  _ANSI_ARGS_((CONST char *,...));
  52. EXTERN int sscanf  _ANSI_ARGS_((CONST char *, CONST char *,...));
  53. #ifdef SPRINTF_RETURN_CHAR
  54. EXTERN char *sprintf _ANSI_ARGS_((char *, CONST char *,...));
  55. #else
  56. EXTERN int sprintf _ANSI_ARGS_((char *, CONST char *,...));
  57. #endif
  58. #endif
  59. #endif /* NEED_REAL_STDIO */
  60.  
  61. #ifndef EOF
  62. #define EOF (-1)
  63. #endif
  64.  
  65. /* This is to catch case with no stdio */
  66. #ifndef BUFSIZ
  67. #define BUFSIZ 1024
  68. #endif
  69.  
  70. #ifndef SEEK_SET
  71. #define SEEK_SET 0
  72. #endif
  73.  
  74. #ifndef SEEK_CUR
  75. #define SEEK_CUR 1
  76. #endif
  77.  
  78. #ifndef SEEK_END
  79. #define SEEK_END 2
  80. #endif
  81.