/**
 * \file   uclibc/lib/include/cstdio
 * \brief  
 *
 * \date   05/19/2004
 * \author Alexander Warg  <alexander.warg@os.inf.tu-dresden.de>
 */
/* (c) 2004 Technische Universitaet Dresden
 * This file is part of DROPS, which is distributed under the terms of the
 * GNU General Public License 2. Please see the COPYING file for details.
 */
/* -*- c++ -*-*/

#ifndef CSTDIO_INCLUDE
#define CSTDIO_INCLUDE

extern "C" {
#include <stdio.h>
}

#if(__GNUC__>=3) 
namespace std {
  using ::putchar;
  using ::puts;
  //  using ::putstr;
  //  using ::putnstr;
  using ::printf;
  using ::sprintf;
  using ::snprintf;
  using ::asprintf;
  using ::sscanf;
  //  using ::scanf;
  using ::vprintf;
  using ::vsprintf;
  using ::vsnprintf;
  using ::getchar;
  using ::gets;
  using ::fgets;
  using ::vscanf;
  using ::vsscanf;

};
#endif


#endif // CSTDIO_INCLUDE
