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

Merge pull request #6250 from smlng/pr/shell/commands/fix_strtok_r_error

shell: fix strtok_r compile error
This commit is contained in:
Sebastian Meiling 2016-12-21 11:08:44 +01:00 committed by GitHub
commit 9b312a8aae

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>