Show
Ignore:
Timestamp:
01/05/07 15:42:01 (2 years ago)
Author:
dshipton
Message:

Use the standard C++ headers cstdio and cstdlib instead of the old pre-standard ones that pollute the global namespace.
This is in reference to Ticket #128.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/Base/Network/Base/OSGConnectionFactory.cpp

    r106 r467  
    4343#define OSG_COMPILE_CONNECTIONFACTORY 
    4444 
    45 #include <stdlib.h
    46 #include <stdio.h
     45#include <cstdlib
     46#include <cstdio
    4747 
    4848#include "OSGConfig.h" 
     
    199199namespace 
    200200{ 
    201     static Char8 cvsid_cpp[] = "@(#)$Id:$"; 
     201    static Char8 cvsid_cpp[] = "@(#)$Id$"; 
    202202    static Char8 cvsid_hpp[] = OSG_CONNECTIONFACTORYHEADER_CVSID; 
    203203}