Changeset 25a76ab8 in mainline for boot/generic/include/stdarg.h


Ignore:
Timestamp:
2010-05-08T07:53:23Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
051bc69a
Parents:
6c39a907 (diff), 1317380 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • boot/generic/include/stdarg.h

    r6c39a907 r25a76ab8  
    2727 */
    2828
    29 /** @addtogroup generic
    30  * @{
    31  */
    3229/** @file
    3330 */
    3431
    35 #ifndef STDARG_H__
    36 #define STDARG_H__
     32#ifndef BOOT_STDARG_H__
     33#define BOOT_STDARG_H__
    3734
    3835typedef __builtin_va_list va_list;
    3936
    40 #define va_start(ap, last)   __builtin_va_start(ap, last)
    41 #define va_arg(ap, type)     __builtin_va_arg(ap, type)
    42 #define va_end(ap)           __builtin_va_end(ap)
     37#define va_start(ap, last)  __builtin_va_start(ap, last)
     38#define va_arg(ap, type)    __builtin_va_arg(ap, type)
     39#define va_end(ap)          __builtin_va_end(ap)
    4340
    4441#endif
Note: See TracChangeset for help on using the changeset viewer.