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

extern "C" {
#include <stddef.h>
}
namespace std {

#if(__GNUC__>=3)

  using ::ptrdiff_t;
  using ::size_t;

#endif

};


#endif // CSTDDEF_INCLUDE
