mirror of
https://review.haiku-os.org/haiku
synced 2024-11-23 07:18:40 +01:00
cbe35e2031
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15494 a95241bf-73f2-0310-859d-f6bbb57e9c96
15 lines
210 B
C++
15 lines
210 B
C++
// -*- C++ -*- forwarding header.
|
|
// This file is part of the GNU ANSI C++ Library.
|
|
|
|
#ifndef __CSTDDEF__
|
|
#define __CSTDDEF__
|
|
|
|
#include <stddef.h>
|
|
|
|
namespace std {
|
|
using ::ptrdiff_t;
|
|
using ::size_t;
|
|
}
|
|
|
|
#endif
|