My Project
Loading...
Searching...
No Matches
stdarg_myos.h
Go to the documentation of this file.
1
/*
2
* PROJECT: MatanelOS Kernel
3
* LICENSE: NONE
4
* PURPOSE: Variadic functions compiler helpers.
5
*/
6
#ifndef __STDARG_H
7
#define __STDARG_H
8
#ifndef _MSC_VER
9
typedef
__builtin_va_list
va_list
;
10
11
#define va_start(ap, last) __builtin_va_start(ap, last)
12
#define va_arg(ap, type) __builtin_va_arg(ap, type)
13
#define va_end(ap) __builtin_va_end(ap)
14
#else
15
#define va_arg(ap, type) ((type)0)
16
#endif
17
18
#endif
19
#pragma once
va_list
__builtin_va_list va_list
Definition
stdarg_myos.h:9
Users
matanel
Desktop
Projects
KernelDevelopment
kernel
includes
stdarg_myos.h
Generated by
1.14.0