diff --git a/alliance/src/fks/src/fkserror.h b/alliance/src/fks/src/fkserror.h index db82eb25..272ccc41 100644 --- a/alliance/src/fks/src/fkserror.h +++ b/alliance/src/fks/src/fkserror.h @@ -69,7 +69,7 @@ | | \------------------------------------------------------------*/ -# define fkserror( E, V ) (fks_error( (int)(E), (char *)(V), basename(__FILE__), __LINE__ )) +# define fkserror( E, V ) (fks_error( (int)(E), (char *)(V), autbasename(__FILE__,NULL), __LINE__ )) /*------------------------------------------------------------\ | | diff --git a/alliance/src/fvh/src/fbl_bspec.h b/alliance/src/fvh/src/fbl_bspec.h index 0eb24423..37f81acd 100644 --- a/alliance/src/fvh/src/fbl_bspec.h +++ b/alliance/src/fvh/src/fbl_bspec.h @@ -64,4 +64,4 @@ extern ablexpr *bddToAbl () ; extern void fbl_toolbug __P((int code, char *str1, char *str2, int nbr1)); # define fbl_error( C, S ) \ - fprintf( stderr, "%s.%d: ", basename(__FILE__),__LINE__ ); loc_fbl_error( C, S ); + fprintf( stderr, "%s.%d: ", autbasename(__FILE__,NULL),__LINE__ ); loc_fbl_error( C, S ); diff --git a/alliance/src/fvh/src/fbl_drive.h b/alliance/src/fvh/src/fbl_drive.h index eff13d87..e9b628f4 100644 --- a/alliance/src/fvh/src/fbl_drive.h +++ b/alliance/src/fvh/src/fbl_drive.h @@ -53,4 +53,4 @@ extern char *fbl_printabl(); extern char * fbl_vectorize __P((char *Name)); # define fbl_error( C, S ) \ - fprintf( stderr, "%s.%d: ", basename(__FILE__),__LINE__ ); loc_fbl_error( C, S ) + fprintf( stderr, "%s.%d: ", autbasename(__FILE__,NULL),__LINE__ ); loc_fbl_error( C, S ) diff --git a/alliance/src/fvh/src/fvherror.h b/alliance/src/fvh/src/fvherror.h index 7a0a1cfb..6f8410ad 100644 --- a/alliance/src/fvh/src/fvherror.h +++ b/alliance/src/fvh/src/fvherror.h @@ -98,9 +98,9 @@ \------------------------------------------------------------*/ # define fvherror( E, T, V ) \ - (fvh_error((int)(E),(char *)(T),(long)(V),basename(__FILE__),__LINE__)) + (fvh_error((int)(E),(char *)(T),(long)(V),autbasename(__FILE__,NULL),__LINE__)) # define fvhwarning( E, T, V ) \ - (fvh_warning((int)(E),(char *)(T),(long)(V),basename(__FILE__),__LINE__)) + (fvh_warning((int)(E),(char *)(T),(long)(V),autbasename(__FILE__,NULL),__LINE__)) /*------------------------------------------------------------\ | |