]> granicus.if.org Git - check/commitdiff
Remove stray ; from putenv
authorbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Sun, 4 Nov 2012 03:08:37 +0000 (03:08 +0000)
committerbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Sun, 4 Nov 2012 03:08:37 +0000 (03:08 +0000)
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

index ad9b58162628f7e6d31bb3069ebd66d8cc5b6fe1..123fca34c119c56cbb412c52875df39469af35ea 100644 (file)
@@ -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;