VC++6.0 stdint.h找不到
时间: 2023-11-03 16:04:35 浏览: 278
修改了---VC++6.0编译通过的读写CSV文件的代码及实例_
`stdint.h` 是 C99 标准中引入的头文件,而 VC++6.0 只支持 C89 标准,因此不包含 `stdint.h`。如果你需要使用 `stdint.h` 中定义的类型,可以手动定义这些类型,例如:
```c
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef long long int64_t;
typedef unsigned long long uint64_t;
```
或者你可以考虑升级到支持 C99 标准的编译器,如 Visual Studio 2010 及以上版本。
阅读全文