This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
hongwenjun
/
musl
espejo de
https://git.musl-libc.org/git/musl
Seguir
1
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Explorar el Código
make sure getw/putw agree with prototypes by defining _GNU_SOURCE
Rich Felker
hace 13 años
padre
25b88f0810
commit
98eddc6776
Se han
modificado 2 ficheros
con
2 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
1
0
src/stdio/getw.c
1
0
src/stdio/putw.c
+ 1
- 0
src/stdio/getw.c
Ver fichero
@@ -1,3 +1,4 @@
+#define _GNU_SOURCE
#include <stdio.h>
int getw(FILE *f)
+ 1
- 0
src/stdio/putw.c
Ver fichero
@@ -1,3 +1,4 @@
+#define _GNU_SOURCE
#include <stdio.h>
int putw(int x, FILE *f)