diff options
Diffstat (limited to '')
-rw-r--r-- | include/stdarg.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/stdarg.h b/include/stdarg.h index 84bc840..801e5e8 100644 --- a/include/stdarg.h +++ b/include/stdarg.h @@ -16,7 +16,9 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef _STDARG_H -#define _STDARG_H +# ifndef __ONLY_va_list +# define _STDARG_H +# endif #include <slibc/version.h> #include <slibc/features.h> @@ -37,6 +39,12 @@ typedef __builtin_va_list va_list; #endif + + +#ifndef __ONLY_va_list + + + /** * Prologue to using a variadic arguments. * @@ -84,3 +92,5 @@ typedef __builtin_va_list va_list; #endif +#endif + |