]> git.lyx.org Git - lyx.git/blob - src/cheaders/cstddef
cursor fix
[lyx.git] / src / cheaders / cstddef
1 // -*- C++ -*- forwarding header.
2 // This file is part of the GNU ANSI C++ Library.
3
4 #ifndef __CSTDDEF__
5 #define __CSTDDEF__
6 #include <stddef.h>
7
8 // Add some types in the std namespace, since the boost library seems
9 // to look for them (JMarc)
10 namespace std {
11         typedef ::size_t size_t;
12         typedef ::ptrdiff_t ptrdiff_t;
13 }
14
15 #endif