From: brarcher Date: Sun, 4 Nov 2012 03:08:37 +0000 (+0000) Subject: Remove stray ; from putenv X-Git-Tag: 0.10.0~538 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c6fa209c36e4fda3a4c538ac2d7a3b820e5b5a1;p=check 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 --- 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;