1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

replaced tabs with spaces which accidently were introduced.

This commit is contained in:
mc78 2017-05-16 13:31:10 +02:00
parent 691df09a1f
commit d70a9507a7

View File

@ -157,19 +157,19 @@ static char* TargetLib = 0;
#endif
/*****************************************************************************/
/* Credential functions */
/* Credential functions */
/*****************************************************************************/
void DisableAssembling(void){
DoAssemble = 0;
DoAssemble = 0;
}
void DisableLinking(void){
DoLink = 0;
DoLink = 0;
}
void DisableAssemblingAndLinking(void){
DisableAssembling();
DisableLinking();
DisableAssembling();
DisableLinking();
}
/*****************************************************************************/