Removed unneeded whitespace.

This commit is contained in:
n-a-c-h
2005-06-02 01:05:50 +00:00
parent b13fbb8f41
commit 57eed11457
70 changed files with 1570 additions and 1570 deletions

View File

@@ -27,16 +27,16 @@ char *VERSION_STR;
//Place compilation date at the end of VERSION_STR
void placedate()
{
strcpy(VERSION_STR +
strlen(VERSION_STR) -
strcpy(VERSION_STR +
strlen(VERSION_STR) -
strlen(__DATE__), __DATE__);
}
//Place compilation time at the end of VERSION_STR
void placetime()
{
strcpy(VERSION_STR +
strlen(VERSION_STR) -
strcpy(VERSION_STR +
strlen(VERSION_STR) -
strlen(__TIME__), __TIME__);
}