Browse Source

Fix compiler warnings on Teensy 2.0

main
PaulStoffregen 5 years ago
parent
commit
6616cd9478
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      teensy/malloc.c

+ 1
- 1
teensy/malloc.c View File

void * void *
malloc(size_t len) malloc(size_t len)
{ {
struct __freelist *fp1, *fp2, *sfp1, *sfp2;
struct __freelist *fp1, *fp2, *sfp1=NULL, *sfp2=NULL;
char *cp; char *cp;
size_t s, avail; size_t s, avail;



Loading…
Cancel
Save