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

shell: fix strtok_r compile error

This commit is contained in:
smlng 2016-12-20 19:40:55 +01:00
parent ae1bf7e493
commit d17e57310f

View File

@ -12,6 +12,8 @@
* @file
*/
/* Required for strtok_r in string.h, when building with -std=c99 */
#define _DEFAULT_SOURCE 1
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>