Varie correzioni, completata revisione capitolo sull'I/O su file
[gapil.git] / listati / PrintErr.c
1 void PrintErr(char * error) {
2     if (demonize) {                       /* daemon mode */
3         syslog(LOG_ERR, "%s: %m", error); /* log string and error message */
4     } else {
5         perror(error);
6     }
7     return;
8 }