From 0c6fa209c36e4fda3a4c538ac2d7a3b820e5b5a1 Mon Sep 17 00:00:00 2001 From: brarcher Date: Sun, 4 Nov 2012 03:08:37 +0000 Subject: [PATCH] Remove stray ; from putenv There was a stray ; in putenv's defintion. On systems with no putenv, lib/putenv.c will be used instead, which fails to compile. git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@642 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- lib/putenv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/putenv.c b/lib/putenv.c index ad9b581..123fca3 100644 --- a/lib/putenv.c +++ b/lib/putenv.c @@ -1,7 +1,7 @@ #include "libcompat.h" int -putenv (const char *string CK_ATTRIBUTE_UNUSED); +putenv (const char *string CK_ATTRIBUTE_UNUSED) { assert (0); return 0; -- 2.40.0