Changeset 545

Show
Ignore:
Timestamp:
05/24/08 09:57:07 (6 months ago)
Author:
mwhitworth
Message:

Add some SYMBOL_EXPORT functions.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/hybrid/lib/vsprintf.c

    r66 r545  
    2222/* TODO: Edit this to make it cleaner */ 
    2323 
     24#include <init.h> 
     25#include <module.h> 
    2426#include <string.h> 
    2527#include <typedefs.h> 
     
    247249} 
    248250 
     251SYMBOL_EXPORT(vsprintf); 
     252 
    249253int sprintf(char* buf,const char* fmt,...) 
    250254{ 
     
    257261        return i; 
    258262} 
     263 
     264SYMBOL_EXPORT(sprintf);