void warn()

in init/init.c [136:140]


void warn(const char *msg) {
    int error = errno;
    perror(msg);
    errno = error;
}