C2A_Core
stdint.h
[詳解]
1
6
#ifndef STDINT_H_
7
#define STDINT_H_
8
9
// C99 stdint.h ないしはそれと同等のヘッダへのラッパー用ヘッダ
10
// 実機向けのコンパイラが C89 であるときのみ使用すること(CMake では C2A_USE_C99_STDINT=OFF すること)
11
12
#ifdef SILS_FW
13
#include <
stdint.h
>
// このヘッダを使う OBC であっても,SILS 環境下では C99 stdint.h が存在することが期待できる
14
#else
15
#include <src_user/Library/stdint_impl.h>
// 真に C89 環境下では C2A user で C99 stdint.h と同等の型を提供する
16
#endif
// SILS_FW
17
18
#endif
// STDINT_H_
stdint.h
C89 環境用 stdint.h
src
src_core
Library
stdint_wrapper
stdint.h
構築:
1.9.1