public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH] safe_macros: Include errno.h.
@ 2012-02-09 23:05 Vinson Lee
  2012-02-10  1:24 ` Wanlong Gao
  2012-02-10  2:27 ` Caspar Zhang
  0 siblings, 2 replies; 3+ messages in thread
From: Vinson Lee @ 2012-02-09 23:05 UTC (permalink / raw)
  To: ltp-list

Fix build regression introduced by commit
d6a1f25137b0ac8704bd08cc4bc8af01cceaca0e.

This patch fixes this build error on Ubuntu 11.10.
safe_macros.c: In function ‘safe_strtol’:
safe_macros.c:349:2: error: ‘errno’ undeclared (first use in this
function)
safe_macros.c:349:2: note: each undeclared identifier is reported only
once for each function it appears in
safe_macros.c:351:16: error: ‘ERANGE’ undeclared (first use in this
function)

Signed-off-by: Vinson Lee <vlee@twitter.com>
---
 lib/safe_macros.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/lib/safe_macros.c b/lib/safe_macros.c
index 4c8cbb7..31df0fd 100644
--- a/lib/safe_macros.c
+++ b/lib/safe_macros.c
@@ -2,6 +2,7 @@
 #include <sys/mman.h>
 #include <sys/resource.h>
 #include <sys/stat.h>
+#include <errno.h>
 #include <fcntl.h>
 #include <libgen.h>
 #include <limits.h>
-- 
1.7.5.4


------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-02-10  2:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-09 23:05 [LTP] [PATCH] safe_macros: Include errno.h Vinson Lee
2012-02-10  1:24 ` Wanlong Gao
2012-02-10  2:27 ` Caspar Zhang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox