From commits-return-3095-apmail-stdcxx-commits-archive=stdcxx.apache.org@stdcxx.apache.org Mon Jun 16 16:31:24 2008 Return-Path: Delivered-To: apmail-stdcxx-commits-archive@www.apache.org Received: (qmail 84016 invoked from network); 16 Jun 2008 16:31:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Jun 2008 16:31:24 -0000 Received: (qmail 67403 invoked by uid 500); 16 Jun 2008 16:31:27 -0000 Delivered-To: apmail-stdcxx-commits-archive@stdcxx.apache.org Received: (qmail 67390 invoked by uid 500); 16 Jun 2008 16:31:27 -0000 Mailing-List: contact commits-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list commits@stdcxx.apache.org Received: (qmail 67381 invoked by uid 99); 16 Jun 2008 16:31:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Jun 2008 09:31:26 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Jun 2008 16:30:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D6E8A23889F3; Mon, 16 Jun 2008 09:31:03 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r668225 - /stdcxx/branches/4.3.x/etc/config/src/VA_LIST_FUNC_MACRO.cpp Date: Mon, 16 Jun 2008 16:31:03 -0000 To: commits@stdcxx.apache.org From: elemings@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080616163103.D6E8A23889F3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elemings Date: Mon Jun 16 09:31:03 2008 New Revision: 668225 URL: http://svn.apache.org/viewvc?rev=668225&view=rev Log: 2008-06-16 Eric Lemings STDCXX-958 * etc/config/src/VA_LIST_FUNC_MACRO.cpp: Initial version of configuration check for va-list function macros. Added: stdcxx/branches/4.3.x/etc/config/src/VA_LIST_FUNC_MACRO.cpp Added: stdcxx/branches/4.3.x/etc/config/src/VA_LIST_FUNC_MACRO.cpp URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/etc/config/src/VA_LIST_FUNC_MACRO.cpp?rev=668225&view=auto ============================================================================== --- stdcxx/branches/4.3.x/etc/config/src/VA_LIST_FUNC_MACRO.cpp (added) +++ stdcxx/branches/4.3.x/etc/config/src/VA_LIST_FUNC_MACRO.cpp Mon Jun 16 09:31:03 2008 @@ -0,0 +1,36 @@ +// checking for va-list function macros + +/*************************************************************************** + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the License); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied. See the License for the specific language governing + * permissions and limitations under the License. + * + * Copyright 2008 Rogue Wave Software, Inc. + * + **************************************************************************/ + +#include +#include + +#define foo(buf, s, ...) (sprintf (buf, s, __VA_ARGS__)) + +int main () +{ + char buf [256] = ""; + foo (buf, "%s %d", "string", 1); + return strcmp (buf, "string 1"); +} +