samples: sockets: echo: Include stdlib.h

Include stdlib.h to suppress a missing declaration
warning for exit() when compiled as a Linux target.

Signed-off-by: Oleg Zhurakivskyy <oleg.zhurakivskyy@intel.com>
This commit is contained in:
Oleg Zhurakivskyy 2019-12-23 11:04:45 +02:00 committed by Andrew Boie
commit f4ebf53cfb

View file

@ -5,6 +5,7 @@
*/ */
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
#include <errno.h> #include <errno.h>
#ifndef __ZEPHYR__ #ifndef __ZEPHYR__