Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
f6cd2945
提交
f6cd2945
authored
1月 29, 2014
作者:
Michael Jerris
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
FS-5956: fix __sputc included twice due to stdio.h inlining issue
上级
623e1ec5
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
10 行增加
和
2 行删除
+10
-2
crypto_math.h
libs/srtp/crypto/include/crypto_math.h
+4
-0
datatypes.h
libs/srtp/crypto/include/datatypes.h
+0
-1
crypto_kernel.c
libs/srtp/crypto/kernel/crypto_kernel.c
+3
-0
err.c
libs/srtp/crypto/kernel/err.c
+3
-0
math.c
libs/srtp/crypto/math/math.c
+0
-1
没有找到文件。
libs/srtp/crypto/include/crypto_math.h
浏览文件 @
f6cd2945
...
...
@@ -46,6 +46,10 @@
#define MATH_H
#include "datatypes.h"
#ifndef SRTP_KERNEL
# include <stdio.h>
#endif
unsigned
char
v32_weight
(
v32_t
a
);
...
...
libs/srtp/crypto/include/datatypes.h
浏览文件 @
f6cd2945
...
...
@@ -53,7 +53,6 @@
#include <stdarg.h>
#ifndef SRTP_KERNEL
# include <stdio.h>
# include <string.h>
# include <time.h>
# ifdef HAVE_NETINET_IN_H
...
...
libs/srtp/crypto/kernel/crypto_kernel.c
浏览文件 @
f6cd2945
...
...
@@ -46,6 +46,9 @@
#include "alloc.h"
#include "crypto_kernel.h"
#ifndef SRTP_KERNEL
# include <stdio.h>
#endif
/* the debug module for the crypto_kernel */
...
...
libs/srtp/crypto/kernel/err.c
浏览文件 @
f6cd2945
...
...
@@ -47,6 +47,9 @@
#endif
#include "err.h"
#ifndef SRTP_KERNEL
# include <stdio.h>
#endif
#ifdef ERR_REPORTING_SYSLOG
# ifdef HAVE_SYSLOG_H
...
...
libs/srtp/crypto/math/math.c
浏览文件 @
f6cd2945
...
...
@@ -814,7 +814,6 @@ bitvector_get_bit(const bitvector_t *v, int bit_index) {
}
#include <stdio.h>
int
bitvector_print_hex
(
const
bitvector_t
*
v
,
FILE
*
stream
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论