Beispiel #1
0
int main()
    {
    void prntMsg();
    
    prntMsg();
    
    getch();
    return 0;
}
void warning( char *text )
{
    prntMsg("Warning", text);
}
void error( char *text )
{
    prntMsg("Error", text);
    exit(1);
}