#ifndef __P # if defined(__STDC__) || defined(__GNUC__) # define __P(x) x # else # define __P(x) () # endif #endif /*------------------------------------------------------------\ | | | Tool : RDS | | | | File : rtlerror.h | | | | Authors : Jacomme Ludovic | | | | Date : 27.06.95 | | | \------------------------------------------------------------*/ # ifndef RTL_ERROR # define RTL_ERROR /*------------------------------------------------------------\ | | | Constants | | | \------------------------------------------------------------*/ # define RTL_UNKNOWN_RDS_OUT 0 # define RTL_UNKNOWN_RDS_IN 1 /*------------------------------------------------------------\ | | | Types | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Variables | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Macros | | | \------------------------------------------------------------*/ # define rtlerror( E, V ) (rtl_error( (E), (V), basename(__FILE__), __LINE__ )) /*------------------------------------------------------------\ | | | Functions | | | \------------------------------------------------------------*/ extern void rtl_error __P((char Error, char *Text, char *File, long Line)); # endif