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

Merge pull request #355 from mehlis/stdlib-fix

fix includes of stdlib
This commit is contained in:
Christian Mehlis 2013-11-21 13:40:25 -08:00
commit 3fd90c9ad7
2 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,6 @@
#ifndef __QUEUE_H
#define __QUEUE_H
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>

View File

@ -16,6 +16,7 @@
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
*/
#include <stdio.h>
#include <stdlib.h>
#ifdef __MACH__
#define _XOPEN_SOURCE
#endif