Subversion Repositories Kolibri OS

Rev

Rev 5131 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5131 Rev 6356
Line 28... Line 28...
28
void SDL_printf_error(const char * fmt,...)
28
void SDL_printf_error(const char * fmt,...)
29
{
29
{
30
 int pid;
30
 int pid;
31
 va_list args;
31
 va_list args;
32
 va_start(args,fmt);
32
 va_start(args,fmt);
33
 __libclog_vprintf(fmt,args);
33
 printf(fmt,args);
34
 exit(-1);
34
 exit(-1);
35
}
35
}
Line 36... Line 36...
36
 
36