mirror of
https://github.com/boostorg/integer.git
synced 2025-10-20 20:15:29 +02:00
13 lines
191 B
C++
13 lines
191 B
C++
![]() |
// -*- C++ -*- forwarding header.
|
||
|
|
||
|
#ifndef BOOST_CSTDDEF_HPP
|
||
|
#define BOOST_CSTDDEF_HPP
|
||
|
|
||
|
#if defined(__sgi) && !defined(__GNUC__)
|
||
|
# include <stddef.h>
|
||
|
#else
|
||
|
# include <cstddef>
|
||
|
#endif
|
||
|
|
||
|
#endif
|