print fedex version in generated code

This commit is contained in:
Mark Pictor 2011-11-24 14:13:22 -05:00
parent 59349657da
commit fa615a1786

View file

@ -127,9 +127,9 @@ FILEcreate( const char * filename ) {
fprintf( file, "#ifndef %s\n", fn = StrToConstant( filename ) );
fprintf( file, "#define %s\n", fn );
fprintf( file, "// This file was generated by fedex_plus. You probably don't want to edit\n" );
fprintf( file, "// it since your modifications will be lost if fedex_plus is used to\n" );
fprintf( file, "// regenerate it.\n" );
fprintf( file, "// This file was generated by fedex_plus %s.\n", scl_version() );
fprintf( file, "// You probably don't want to edit it since your modifications\n" );
fprintf( file, "// will be lost if fedex_plus is used to regenerate it.\n" );
return ( file );
}