www.nico.schottelius.org/software/cinit/browse_source/cinit-0.3pre3/src/generic/usage.c

24 lines
567 B
C
Raw Normal View History

/***********************************************************************
*
* 2005-2006 Nico Schottelius (nico-linux-cinit at schottelius.org)
*
* part of cLinux/cinit
*
* usage: tell the world what we want - seriously no capitalism
*
*/
#include <unistd.h>
#include "cinit.h"
/***********************************************************************
* usage: tell the user what's wrong and a help text
*/
void usage(char *banner, char *text)
{
/* print banner + error message */
mini_printf(banner,1);
mini_printf(text,1);
_exit(1);
}