cktan / tomlc99

TOML C library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

int64_t not found

mlabbe opened this issue · comments

Building with clang on amd64. I had to include stdint.h before including it. int64_t is not a built-in typedef.

clang --std=gnu99 does not change this.

This error is easily masked if you include stdlib or other std libs that include stdint.h. However, if you include "toml.h" at the top of your program, it will error out.