error.c
author viric@llimona
Fri, 14 Sep 2007 22:26:58 +0200
changeset 12 6a372f8b4b8a
parent 3 909bca647298
child 14 286b248e402a
permissions -rw-r--r--
Ignore, license and version.

/*
    stdin mix - a mixer/multiplexer for stdin to processes
    Copyright (C) 2007  LluĂ­s Batlle i Rossell

    Please find the license in the provided COPYING file.
*/
#include <stdio.h>
#include <stdlib.h>

#include "main.h"

void error(const char *msg)
{
    perror(msg);
    exit(-1);
}