Changeset 1935

Show
Ignore:
Timestamp:
02/25/09 19:42:23 (3 years ago)
Author:
mwhitworth
Message:

Add sprintf stub.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/trunk/lib/vsprintf.c

    r1668 r1935  
    409409 
    410410SYMBOL_EXPORT(vasprintf); 
     411 
     412/* sprintf, used by Linux drivers mostly. */ 
     413int sprintf(char* str, const char* fmt, ...) 
     414{ 
     415        KePrint("sprintf"); 
     416        return 0; 
     417} 
     418 
     419SYMBOL_EXPORT(sprintf);