mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
16 lines
328 B
Plaintext
16 lines
328 B
Plaintext
|
// -*- C++ -*- forwarding header.
|
||
|
// This file is part of the GNU ANSI C++ Library.
|
||
|
|
||
|
#ifndef __CSTDDEF__
|
||
|
#define __CSTDDEF__
|
||
|
#include <stddef.h>
|
||
|
|
||
|
// Add some types in the std namespace, since the boost library seems
|
||
|
// to look for them (JMarc)
|
||
|
namespace std {
|
||
|
typedef ::size_t size_t;
|
||
|
typedef ::ptrdiff_t ptrdiff_t;
|
||
|
}
|
||
|
|
||
|
#endif
|