/**
* @file stdint.h
* Copyright 2012, 2013 MinGW.org project
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/* Created by Danny Smith <danny_r_smith_2001@yahoo.co.nz> */
#ifndef _STDINT_H
#define _STDINT_H
#pragma GCC system_header
#include <_mingw.h>
/* ISO C9x 7.18 Integer types <stdint.h>
* Based on ISO/IEC SC22/WG14 9899 Committee draft (SC22 N2794)
*/
#define __need_wint_t
#define __need_wchar_t
#include <stddef.h>
/* 7.18.1.1 Exact-width integer types */
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 uint32_t;
typedef long long int64_t;
typedef unsigned long long uint64_t;
error: ‘uint16_t’ does not name a type
来源:清泛原创 2016-06-07 11:21:59 人气: 我有话说( 0 人参与)
#include <stdint.h> 解决。 ** * @file stdint.h * Copyright 2012, 2013 MinGW.org project * * Permission is hereby ...
#include <stdint.h> 解决。
上一篇:C++程序结果出现1.#inf 1.#IO
下一篇:XXX.cc:100: error: ‘::strerror’ has not been declared
注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
相关热点
- 1google mock分享(全网最全最好的gmock文...
- 2【解决】asan runtime does not come ...
- 3coinitialize失败,返回值是0x80010106 无...
- 4Reference to ' ' is ambiguous:符号定义重复
- 5hidden symbol ... is referenced by DSO 剖析
- 6浅析Linux段错误:SEGV_MAPERR、SEGV_ACCERR
- 7use of deleted function std::unique_...
- 8VS Addin插件基本开发入门
- 9【解决】munmap_chunk(): invalid pointer
本月排行
- 1C/C++ 如何向上取整? 160次浏览
- 2hidden symbol ... is referenced by DSO 剖析 100次浏览
- 3Linux C++ 单元测试与gcov代... 53次浏览
- 4【解决】double free or corruption (!prev) 46次浏览
- 5CMFCTabCtrl的使用、颜色样式调整 41次浏览
- 6解决:Run-Time Check Failur... 35次浏览
- 7CFileDialog用法及参数解释 30次浏览
- 8error C2220: 警告被视为错误... 27次浏览
- 9与复制构造函数相关的错误.例如... 27次浏览
- 10C++使用OLE/COM高速读写EXCEL的源码 26次浏览
评论排行
- 1C++ 读写xml方法整理(持续更新)3次评论
- 2Reference to ' ' is ambiguous:符号定义重复2次评论
- 3全民OS2次评论
- 4__attribute__2次评论
- 5海量数据相似度计算之simhash和海...2次评论
- 6C++使用OLE/COM高速读写EXCEL的源码2次评论
- 7AfxIsValidAddress 测试内存地址2次评论
- 8C++入门进阶最佳实战2次评论
- 9phpcms附件上传 Flash换成H52次评论
- 10解决xrdp登陆不上的问题:xrdp s...2次评论