2004-11-10 23:33:33 +03:00
|
|
|
// -*- C++ -*- forwarding header.
|
|
|
|
// This file is part of the GNU ANSI C++ Library.
|
|
|
|
|
|
|
|
#ifndef __CSTDDEF__
|
|
|
|
#define __CSTDDEF__
|
2005-12-11 19:22:51 +03:00
|
|
|
|
2004-11-10 23:33:33 +03:00
|
|
|
#include <stddef.h>
|
2005-12-11 19:22:51 +03:00
|
|
|
|
|
|
|
namespace std {
|
|
|
|
using ::ptrdiff_t;
|
|
|
|
using ::size_t;
|
|
|
|
}
|
|
|
|
|
2004-11-10 23:33:33 +03:00
|
|
|
#endif
|