00001 /* config.h, configuration defines */ 00002 00003 /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */ 00004 00005 /* 00006 * Disclaimer of Warranty 00007 * 00008 * These software programs are available to the user without any license fee or 00009 * royalty on an "as is" basis. The MPEG Software Simulation Group disclaims 00010 * any and all warranties, whether express, implied, or statuary, including any 00011 * implied warranties or merchantability or of fitness for a particular 00012 * purpose. In no event shall the copyright-holder be liable for any 00013 * incidental, punitive, or consequential damages of any kind whatsoever 00014 * arising from the use of these programs. 00015 * 00016 * This disclaimer of warranty extends to the user of these programs and user's 00017 * customers, employees, agents, transferees, successors, and assigns. 00018 * 00019 * The MPEG Software Simulation Group does not represent or warrant that the 00020 * programs furnished hereunder are free of infringement of any third-party 00021 * patents. 00022 * 00023 * Commercial implementations of MPEG-1 and MPEG-2 video, including shareware, 00024 * are subject to royalty fees to patent holders. Many of these patents are 00025 * general enough such that they are unavoidable regardless of implementation 00026 * design. 00027 * 00028 */ 00029 00030 /* define NON_ANSI_COMPILER for compilers without function prototyping */ 00031 /* #define NON_ANSI_COMPILER */ 00032 00033 #ifdef NON_ANSI_COMPILER 00034 #define _ANSI_ARGS_(x) () 00035 #else 00036 #define _ANSI_ARGS_(x) x 00037 #endif 00038 00039 #define RB "rb" 00040 #define WB "wb" 00041 00042 #ifndef O_BINARY 00043 #define O_BINARY 0 00044 #endif