blob: a183d41c507c4e9743fe1bf9d8b0625300545b1d [file] [log] [blame]
/****************************************************************************
| (C) Copyright 2008 Novell, Inc. All Rights Reserved.
|
| GPLv2: This program is free software; you can redistribute it
| and/or modify it under the terms of version 2 of the GNU General
| Public License as published by the Free Software Foundation.
|
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
+-------------------------------------------------------------------------*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <myio.h>
#include <eprintf.h>
void io_error (const char *what, const char *who)
{
if (what && who) {
eprintf("%s: %s:", what, who);
} else if (what) {
eprintf("%s:", what);
} else {
eprintf(":");
}
}