mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
514da94bf0
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1069 a592a061-630c-0410-9148-cb99ea01b6c8
16 lines
328 B
C++
16 lines
328 B
C++
// -*- 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
|