Ignore:
Timestamp:
Apr 15, 2009, 8:40:22 PM (15 years ago)
Author:
nipo
Message:

Sync up with trunk changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/with_autoconf/src/sc_uint.h

    r8 r20  
    1818#include <sc_logic.h>
    1919#include <sc_bv.h>
     20#include <cstdlib>
    2021
    2122// ----------------------------------------------------------------------------
     
    126127  sc_uint ()                { val = 0; }
    127128//  sc_uint (data_type val_)  { val = 0; write (val_); }
    128   sc_uint (const char *a)   { val = 0; write (atoi (a)); }
     129  sc_uint (const char *a)   { val = 0; write (std::atoi (a)); }
    129130  sc_uint (unsigned short a){ val = 0; write (a); }
    130131  sc_uint (short a)         { val = 0; write (a); }
Note: See TracChangeset for help on using the changeset viewer.