Add basic print program
This commit is contained in:
12
src/core/compat/stdarg.h
Normal file
12
src/core/compat/stdarg.h
Normal file
@@ -0,0 +1,12 @@
|
||||
//---------------------------------------------------------------
|
||||
//
|
||||
// !!! AI GENERATE SLOP, PLEASE FIX !!!
|
||||
//
|
||||
//---------------------------------------------------------------
|
||||
|
||||
#pragma once
|
||||
|
||||
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)
|
||||
Reference in New Issue
Block a user