//验证程序断言
#include <assert.h>
//支持复数算术运算
#include <complex.h>
//字符类型
#include <ctype.h>
//出错码
#include <errno.h>
//浮点环境
#include <fenv.h>
//浮点常量
#include <float.h>
//整型格式转换
#include <inttypes.h>
// 替代关系操作符宏
#include <iso646.h>
//实现常量
#include <limits.h>
//本地化函数。
#include <locale.h>
//数学常量、运算
#include <math.h>
//非局部goto
#include <setjmp.h>
//信号
#include <signal.h>
//C11 用于查询和指定对象的数据结构对齐。
#include <stdalign.h>
//可变参数表
#include <stdarg.h>
//C11 原子操作
#include <stdatomic.h>
//bool
#include <stdbool.h>
//常见类型和宏
#include <stddef.h>
//整型
#include <stdint.h>
//标准I/O库
#include <stdio.h>
//定义数值转换函数,伪随机数生成函数,动态内存分配函数,过程控制函数。
#include <stdlib.h>
//用于指定不返回的函数。
#include <stdnoreturn.h>
//字符串操作、内存操作
#include <string.h>
//通用类型数学宏
#include <tgmath.h>
//C11 threads
//mac 平台未实现
//#include <threads.h>
//时间和日期
#include <time.h>
//Unicode characters
//mac 平台未实现
//#include <uchar.h>
//扩展的多字节和宽字符支持
#include <wchar.h>
//宽字符分类和映射支持
#include <wctype.h>
网友评论