This commit is contained in:
Ludovic Jacomme 2002-08-02 11:09:20 +00:00
parent 1551cfe270
commit 580237f8d4
4 changed files with 5 additions and 5 deletions

View File

@ -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__ ))
/*------------------------------------------------------------\
| |

View File

@ -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 );

View File

@ -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 )

View File

@ -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__))
/*------------------------------------------------------------\
| |