This commit is contained in:
Peter 2011-12-05 19:50:52 +01:00
parent 5cc51e5021
commit 4f158ad930
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ int digits(int val) {
* (^C) so that we can restore the cursor.
*/
void SIGINT_handler(int sig){
printf("\\033[?25h\033[0m");
printf("\033[?25h\033[0m");
exit(0);
}