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/OSGBinaryMessage.cpp

    r106 r467  
    4141//--------------------------------------------------------------------------- 
    4242 
    43 #include <stdlib.h
    44 #include <stdio.h
     43#include <cstdlib
     44#include <cstdio
    4545 
    4646#include "OSGConfig.h" 
     
    192192namespace 
    193193{ 
    194     static Char8 cvsid_cpp[] = "@(#)$Id:$"; 
     194    static Char8 cvsid_cpp[] = "@(#)$Id$"; 
    195195    static Char8 cvsid_hpp[] = OSG_BINSOCKETMESSAGEHEADER_CVSID; 
    196196}