Aggiornamento alla versione reale
[gapil.git] / listati / PrintErr.c
1 void PrintErr(char * error) {
2     if (demonize) {
3         syslog(LOG_ERR, error);
4     } else {
5         perror(error);
6     }
7     return;
8 }