skip to Main Content

Ubuntu – How to build when __builtin_va_arg_pack() is used

For purely educational purposes, I am trying to write examples with the "Constructing Function Calls builtins" (https://gcc.gnu.org/onlinedocs/gcc-13.2.0/gcc/Constructing-Calls.html#index-_005f_005fbuiltin_005fva_005farg_005fpack) I have written an example that incorporates what appears in the documentation: #include <stdio.h> extern int myprintf(FILE *f, const char *format, ...); extern…

VIEW QUESTION
Back To Top
Search