Espresso 0.0.2c
This commit is contained in:
@ -13,11 +13,9 @@ char char_entered = 0x00;
|
||||
|
||||
void intro_begin(void)
|
||||
{
|
||||
extern char* kernel_version;
|
||||
|
||||
char* fin = (char*) malloc(strlen(kernel_version) + 6);
|
||||
memset(fin, 0, (strlen(kernel_version) + 5));
|
||||
strcpy(fin, kernel_version);
|
||||
char* fin = (char*) malloc(strlen(KERNEL_VERSION) + 6);
|
||||
memset(fin, 0, (strlen(KERNEL_VERSION) + 5));
|
||||
strcpy(fin, KERNEL_VERSION);
|
||||
|
||||
#ifdef _DEBUG
|
||||
strcat(fin, " DEBUG");
|
||||
|
||||
Reference in New Issue
Block a user