nshlib/nsh_vars.c: Add missing stdio.h

nsh_vars.c: In function 'nsh_setvar':
nsh_vars.c:285:3: error: incompatible implicit declaration of built-in function 'sprintf' [-Werror]
  285 |   sprintf(pair, "%s=%s", name, value);
This commit is contained in:
Ville Juven 2023-03-13 15:27:05 +02:00 committed by Alan Carvalho de Assis
parent 7ab1f2a957
commit 5d9811a03d

View File

@ -24,6 +24,7 @@
#include <nuttx/config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>