lyx_mirror/src/cheaders/cstddef

16 lines
328 B
Plaintext
Raw Normal View History

// -*- 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