This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
hongwenjun
/
musl
mirror da
https://git.musl-libc.org/git/musl
Segui
1
Vota
0
Forka
0
File
Problemi
0
Wiki
Sfoglia il codice sorgente
make sure getw/putw agree with prototypes by defining _GNU_SOURCE
Rich Felker
12 anni fa
parent
25b88f0810
commit
98eddc6776
2 ha cambiato i file
con
2 aggiunte
e
0 eliminazioni
Visualizzazione separata
Mostra Diff Stats
1
0
src/stdio/getw.c
1
0
src/stdio/putw.c
+ 1
- 0
src/stdio/getw.c
Vedi File
@@ -1,3 +1,4 @@
+#define _GNU_SOURCE
#include <stdio.h>
int getw(FILE *f)
+ 1
- 0
src/stdio/putw.c
Vedi File
@@ -1,3 +1,4 @@
+#define _GNU_SOURCE
#include <stdio.h>
int putw(int x, FILE *f)