lyx_mirror/src/cheaders/cstddef
Jean-Marc Lasgouttes 514da94bf0 The usual small monday fixes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1069 a592a061-630c-0410-9148-cb99ea01b6c8
2000-10-02 14:35:11 +00:00

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