This change may muck up USB processing if you intend to use the USB comms in your sketch, but the quick fix is comment out lines 92 - 124 of C:\Users\Roma\AppData\Local\Arduino15\packages\digistump\hardware\avr\1.6.7\cores\tiny\wiring.c. The error message is basically telling you that something on line 61 of your sketch is defined on line 93 of wiring.c, and multiple definitions of the same thing aren't valid.
However, whether this will do what you want is a different matter. Commenting out those lines will remove the error, and the sketch will successfully compile, but I don't know how well it functions.