1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #12265 from smlng/fix_sys_pipe_freebsd

sys/pipe: always include stdlib.h instead of malloc.h
This commit is contained in:
Martine Lenders 2019-09-17 21:35:09 +02:00 committed by GitHub
commit baebcef79e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,11 +25,7 @@
* @}
*/
#if defined(MCU_ATMEGA2560) || defined(MCU_ATMEGA1281) || defined(MCU_ATMEGA328P)
#include <stdlib.h>
#else
#include <malloc.h>
#endif
#include "pipe.h"