1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 02:30:44 +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 #endif
/*****************************************************************************/ /*****************************************************************************/
/* Credential functions */ /* Credential functions */
/*****************************************************************************/ /*****************************************************************************/
void DisableAssembling(void){ void DisableAssembling(void){
DoAssemble = 0; DoAssemble = 0;
} }
void DisableLinking(void){ void DisableLinking(void){
DoLink = 0; DoLink = 0;
} }
void DisableAssemblingAndLinking(void){ void DisableAssemblingAndLinking(void){
DisableAssembling(); DisableAssembling();
DisableLinking(); DisableLinking();
} }
/*****************************************************************************/ /*****************************************************************************/