Changeset 545 for Whitix/branches/hybrid/lib
- Timestamp:
- 05/24/08 09:57:07 (6 months ago)
- Files:
-
- 1 modified
-
Whitix/branches/hybrid/lib/vsprintf.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/hybrid/lib/vsprintf.c
r66 r545 22 22 /* TODO: Edit this to make it cleaner */ 23 23 24 #include <init.h> 25 #include <module.h> 24 26 #include <string.h> 25 27 #include <typedefs.h> … … 247 249 } 248 250 251 SYMBOL_EXPORT(vsprintf); 252 249 253 int sprintf(char* buf,const char* fmt,...) 250 254 { … … 257 261 return i; 258 262 } 263 264 SYMBOL_EXPORT(sprintf);