Files
haiku-beta6/headers/cpp/cstddef
T

15 lines
210 B
C++
Raw Normal View History

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