Searched refs:G_VA_COPY (Results 1 - 3 of 3) sorted by relevance

/asus-wl-520gu-7.0.1.45/src/router/rcamdmips/
H A Dglibconfig.h67 #define G_VA_COPY __va_copy macro
H A Dglib.h146 /* Define G_VA_COPY() to do the right thing for copying va_list variables.
147 * glibconfig.h may have already defined G_VA_COPY as va_copy or __va_copy.
149 #if !defined (G_VA_COPY)
151 # define G_VA_COPY(ap1, ap2) (*(ap1) = *(ap2)) macro
153 # define G_VA_COPY(ap1, ap2) g_memmove ((ap1), (ap2), sizeof (va_list)) macro
155 # define G_VA_COPY(ap1, ap2) ((ap1) = (ap2)) macro
157 #endif /* !G_VA_COPY */
H A Dgstrfuncs.c154 G_VA_COPY (args2, args1);

Completed in 44 milliseconds