os/ossrv/genericopenlibs/openenvcore/libc/inc/stdarg.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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