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 видалено
Розділений вигляд
Показати статистику Diff
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)