/** -*- C++ -*-
 **
 **  KAI C++ Compiler
 **
 **  Copyright (C) 1996-2001 Intel Corp. All rights reserved.
 **/
#ifndef __KAI_CSTDLIB
#define __KAI_CSTDLIB

#include <mcompile.h>
#include <stdlib.h>

namespace std {
using ::size_t;
using ::div_t;
using ::ldiv_t;

using ::abort;
using ::abs;
using ::atexit;
using ::atof;
using ::atoi;
using ::atol;
using ::bsearch;
using ::calloc;
using ::div;
using ::exit;
using ::free;
using ::getenv;
using ::labs;
using ::ldiv;
using ::malloc;
using ::qsort;
using ::rand;
using ::realloc;
using ::srand;
using ::strtod;
using ::strtol;
using ::strtoul;
using ::system;

#ifdef MSIPL_WCHART
using ::mblen;
using ::mbstowcs;
using ::mbtowc;
using ::wcstombs;
using ::wctomb;
#endif

} /* namespace std */

#endif /* __KAI_CSTDLIB */
