Explorar el Código

Fix compiler warnings on Teensy 2.0

main
PaulStoffregen hace 5 años
padre
commit
6616cd9478
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      teensy/malloc.c

+ 1
- 1
teensy/malloc.c Ver fichero

@@ -73,7 +73,7 @@ struct __freelist *__flp; // freelist pointer (head of freelist)
void *
malloc(size_t len)
{
struct __freelist *fp1, *fp2, *sfp1, *sfp2;
struct __freelist *fp1, *fp2, *sfp1=NULL, *sfp2=NULL;
char *cp;
size_t s, avail;


Cargando…
Cancelar
Guardar