This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
hongwenjun
/
musl
同期ミラー
https://git.musl-libc.org/git/musl
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
Wiki
ソースを参照
make sure getw/putw agree with prototypes by defining _GNU_SOURCE
Rich Felker
13 年 前
親
25b88f0810
コミット
98eddc6776
2 ファイル変更
、
2 行追加
、
0 行削除
分割表示
差分情報を表示
1
0
src/stdio/getw.c
1
0
src/stdio/putw.c
+ 1
- 0
src/stdio/getw.c
ファイルの表示
@@ -1,3 +1,4 @@
+#define _GNU_SOURCE
#include <stdio.h>
int getw(FILE *f)
+ 1
- 0
src/stdio/putw.c
ファイルの表示
@@ -1,3 +1,4 @@
+#define _GNU_SOURCE
#include <stdio.h>
int putw(int x, FILE *f)