1 /*
2  *  Custom inttypes.h for VS2010 KreMLin requires these definitions,
3  *  but VS2010 doesn't provide them.
4  *
5  *  Copyright 2016-2018 INRIA and Microsoft Corporation
6  *  SPDX-License-Identifier: Apache-2.0
7  *
8  *  Licensed under the Apache License, Version 2.0 (the "License"); you may
9  *  not use this file except in compliance with the License.
10  *  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  *  Unless required by applicable law or agreed to in writing, software
15  *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16  *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  See the License for the specific language governing permissions and
18  *  limitations under the License.
19  *
20  *  This file is part of Mbed TLS (https://tls.mbed.org)
21  */
22 
23 #ifndef _INTTYPES_H_VS2010
24 #define _INTTYPES_H_VS2010
25 
26 #include <stdint.h>
27 
28 #ifdef _MSC_VER
29 #define inline __inline
30 #endif
31 
32 /* VS2010 unsigned long == 8 bytes */
33 
34 #define PRIu64 "I64u"
35 
36 #endif
37