6576695766
implementation. This re-introduces C99 style comments that previously were replaced by original C comments.
40 lines
955 B
C
40 lines
955 B
C
/* $FreeBSD$ */
|
|
#ifndef _EFISTDARG_H_
|
|
#define _EFISTDARG_H_
|
|
|
|
/*++
|
|
|
|
Copyright (c) 1999 - 2002 Intel Corporation. All rights reserved
|
|
This software and associated documentation (if any) is furnished
|
|
under a license and may only be used or copied in accordance
|
|
with the terms of the license. Except as permitted by such
|
|
license, no part of this software or documentation may be
|
|
reproduced, stored in a retrieval system, or transmitted in any
|
|
form or by any means without the express written consent of
|
|
Intel Corporation.
|
|
|
|
Module Name:
|
|
|
|
devpath.h
|
|
|
|
Abstract:
|
|
|
|
Defines for parsing the EFI Device Path structures
|
|
|
|
|
|
|
|
Revision History
|
|
|
|
--*/
|
|
|
|
#define _INTSIZEOF(n) ( (sizeof(n) + sizeof(UINTN) - 1) & ~(sizeof(UINTN) - 1) )
|
|
|
|
typedef CHAR8 * va_list;
|
|
|
|
#define va_start(ap,v) ( ap = (va_list)&v + _INTSIZEOF(v) )
|
|
#define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) )
|
|
#define va_end(ap) ( ap = (va_list)0 )
|
|
|
|
|
|
#endif /* _INC_STDARG */
|