The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / zmqpp / 0001-add-cstdlib-header-to-ensure-EXIT_FAILURE-presence.patch
1 From 2c9271fa662b98e2a451b859f2506edf5f91c9bf Mon Sep 17 00:00:00 2001
2 From: Lionel Orry <lionel.orry@gmail.com>
3 Date: Fri, 15 May 2015 11:27:57 +0200
4 Subject: [PATCH] add cstdlib header to ensure EXIT_FAILURE presence
5
6 Using some cross-compiling toolchains, EXIT_FAILURE is not always
7 properly defined without this inclusion.
8
9 Add myself to AUTHORS.
10
11 Signed-off-by: Lionel Orry <lionel.orry@gmail.com>
12 ---
13  src/client/main.cpp | 1 +
14  1 file changed, 1 insertion(+)
15
16 diff --git a/src/client/main.cpp b/src/client/main.cpp
17 index 082c06b..760f01a 100644
18 --- a/src/client/main.cpp
19 +++ b/src/client/main.cpp
20 @@ -3,6 +3,7 @@
21   *      Author: @benjamg
22   */
23  
24 +#include <cstdlib>
25  #include <array>
26  #include <iostream>
27  #include <tuple>
28 -- 
29 2.1.0
30