mirror of
https://github.com/ZeroOSProject/ZeroOS.git
synced 2026-09-13 02:24:42 +08:00
内存缓存和ext4完整支持
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
#ifndef ZEROOS_STDARG_H_
|
||||
#define ZEROOS_STDARG_H_
|
||||
|
||||
typedef __builtin_va_list va_list;
|
||||
#define va_start(ap, last) __builtin_va_start(ap, last)
|
||||
#define va_end(ap) __builtin_va_end(ap)
|
||||
#define va_arg(ap, type) __builtin_va_arg(ap, type)
|
||||
#define va_copy(dest, src) __builtin_va_copy(dest, src)
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user