Skip to content

Commit 1f65443

Browse files
committed
Fix inttypes inclusion
__STDC_FORMAT_MACROS needs to be added for format specifiers like PRId32 IAR/ARMCC do not define it
1 parent 55380c6 commit 1f65443

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

main.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17+
#ifndef __STDC_FORMAT_MACROS
18+
#define __STDC_FORMAT_MACROS
19+
#endif
1720

1821
#include "psa/crypto.h"
1922
#include <string.h>

0 commit comments

Comments
 (0)