~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to boot/arch/ia64/loader/gefi/inc/efistdarg.h

  • Committer: Martin Decky
  • Date: 2009-08-04 11:19:19 UTC
  • Revision ID: martin@uranus.dsrg.hide.ms.mff.cuni.cz-20090804111919-evyclddlr3v5lhmp
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _EFISTDARG_H_
 
2
#define _EFISTDARG_H_
 
3
 
 
4
/*++
 
5
 
 
6
Copyright (c) 1998  Intel Corporation
 
7
 
 
8
Module Name:
 
9
 
 
10
    devpath.h
 
11
 
 
12
Abstract:
 
13
 
 
14
    Defines for parsing the EFI Device Path structures
 
15
 
 
16
 
 
17
 
 
18
Revision History
 
19
 
 
20
--*/
 
21
#ifdef __GNUC__
 
22
#include "stdarg.h"
 
23
#else
 
24
#define _INTSIZEOF(n)   ( (sizeof(n) + sizeof(UINTN) - 1) & ~(sizeof(UINTN) - 1) )
 
25
 
 
26
typedef CHAR8 * va_list;
 
27
 
 
28
#define va_start(ap,v)  ( ap = (va_list)&v + _INTSIZEOF(v) )
 
29
#define va_arg(ap,t)    ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) )
 
30
#define va_end(ap)  ( ap = (va_list)0 )
 
31
#endif
 
32
 
 
33
#endif  /* _INC_STDARG */