epoc32/include/stdapis/stdarg.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     1 /* 
     2 *
     3 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     4 * All rights reserved.
     5 * This component and the accompanying materials are made available
     6 * under the terms of "Eclipse Public License v1.0"
     7 * which accompanies this distribution, and is available
     8 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     9 *
    10 * Initial Contributors:
    11 * Nokia Corporation - initial contribution.
    12 *
    13 * Contributors:
    14 *
    15 * Description:
    16 * This is all somewhat tortured because ANSI C says that stdio.h is not supposed 
    17 * to define va_list. stdarg_e.h defines something suitable for stdio.h, and
    18 * this file sorts out va_list.
    19 * 
    20 *
    21 */
    22 
    23 
    24 
    25 #ifndef _STDARG_H
    26 #define _STDARG_H
    27 
    28 #include <stdarg_e.h>
    29 
    30 #ifndef __DOXYGEN__
    31 #define va_list __e32_va_list
    32 #endif //__DOXYGEN__
    33 
    34 #endif