Squash commits for public release
This commit is contained in:
8
kernel/include/libkern/stdarg.h
Normal file
8
kernel/include/libkern/stdarg.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef _KERNEL_LIBKERN_STDARG_H
|
||||
#define _KERNEL_LIBKERN_STDARG_H
|
||||
|
||||
#define va_start(v, l) __builtin_va_start(v, l)
|
||||
#define va_end(v) __builtin_va_end(v)
|
||||
#define va_arg(v, l) __builtin_va_arg(v, l)
|
||||
|
||||
#endif // _KERNEL_LIBKERN_STDARG_H
|
||||
Reference in New Issue
Block a user