/* Copyright (C) 1989, 1990, 1993, 1996, 1999, 2000 Aladdin Enterprises. All rights reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. For more information about licensing, please refer to http://www.ghostscript.com/licensing/. For information on commercial licensing, go to http://www.artifex.com/licensing/ or contact Artifex Software, Inc., 101 Lucas Valley Road #110, San Rafael, CA 94903, U.S.A., +1(415)492-9861. */ /* $Id: gsio.h,v 1.8 2004/08/04 19:36:12 stefan Exp $ */ /* stdio redirection */ #ifndef gsio_INCLUDED # define gsio_INCLUDED /* * The library and interpreter must never use stdin/out/err directly. * Make references to them illegal. */ #undef stdin #define stdin stdin_not_available #undef stdout #define stdout stdout_not_available #undef stderr #define stderr stderr_not_available /* * Redefine all the relevant stdio functions to reference stdin/out/err * explicitly, or to be illegal. */ #undef fgetchar #define fgetchar() Function._fgetchar_.unavailable #undef fputchar #define fputchar(c) Function._fputchar_.unavailable #undef getchar #define getchar() Function._getchar_.unavailable #undef gets #define gets Function._gets_.unavailable /* We should do something about perror, but since many Unix systems */ /* don't provide the strerror function, we can't. (No Aladdin-maintained */ /* code uses perror.) */ #undef printf #define printf Function._printf_.unavailable #undef putchar #define putchar(c) Function._putchar_.unavailable #undef puts #define puts(s) Function._putchar_.unavailable #undef scanf #define scanf Function._scanf_.unavailable #undef vprintf #define vprintf Function._vprintf_.unavailable #undef vscanf #define vscanf Function._vscanf_.unavailable #endif /* gsio_INCLUDED */