Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing stdlib.h include for free()
Building avrdude with current clang+mingw-w64 for arm64 on Windows leads to the following error: serbb_win32.c:294:3: error: call to undeclared library function 'free' with type 'void (void *)' Explicitely import stdlib.h for free() in avrdude.h where mmt_free() is defind to free() to fix this. Fixes #1940
- Loading branch information