00001 /* config.h, configuration defines */ 00002 00003 /* 00004 * tmndecode 00005 * Copyright (C) 1995 Telenor R&D 00006 * Karl Olav Lillevold <kol@nta.no> 00007 * 00008 * based on mpeg2decode, (C) 1994, MPEG Software Simulation Group 00009 * and mpeg2play, (C) 1994 Stefan Eckart 00010 * <stefan@lis.e-technik.tu-muenchen.de> 00011 * 00012 */ 00013 00014 00015 /* define NON_ANSI_COMPILER for compilers without function prototyping */ 00016 /* #define NON_ANSI_COMPILER */ 00017 00018 #ifdef NON_ANSI_COMPILER 00019 #define _ANSI_ARGS_(x) () 00020 #else 00021 #define _ANSI_ARGS_(x) x 00022 #endif 00023 00024 #ifndef O_BINARY 00025 #define O_BINARY 0 00026 #endif