libisofs-legacy/libisofs/errors.c

15 lines
243 B
C
Raw Normal View History

2006-08-15 20:37:04 +00:00
/* -*- indent-tabs-mode: t; tab-width: 8; c-basic-offset: 8; -*- */
#include "errors.h"
#include <stdio.h>
void iso_warn(enum iso_warnings w)
{
printf("WARNING: %u\n", w);
}
void iso_error(enum iso_errors e)
{
printf("ERROR: %u\n", e);
}