/**
 * \file   uclibc/lib/include/cstdarg
 * \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 CSTDARG_INCLUDE
#define CSTDARG_INCLUDE

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

namespace std {

#if(__GNUC__>=3)

  using ::va_list;

#endif

};



#endif // CSTDARG_INCLUDE
