Fix my copypaste blunder with get_corename

This commit is contained in:
Martin Kroeker 2018-02-01 22:06:04 +01:00 committed by GitHub
parent efa84afd00
commit e3c50643bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ void get_libname(void){
printf("v9\n"); printf("v9\n");
} }
void get_corename(void){ char *get_corename(void){
printf("sparc\n"); return "sparc";
} }