aboutsummaryrefslogtreecommitdiffstats
path: root/include/stdarg.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-09-02 20:49:08 +0200
committerMattias Andrée <maandree@operamail.com>2015-09-02 20:49:08 +0200
commitf9e52c4acbd8f53da1b083770c6aab9c67cb0368 (patch)
tree755cb04726fbf6f44b42d94844fd78be6940dd7c /include/stdarg.h
parentadd memcasecmp and wmemcasecmp (diff)
downloadslibc-f9e52c4acbd8f53da1b083770c6aab9c67cb0368.tar.gz
slibc-f9e52c4acbd8f53da1b083770c6aab9c67cb0368.tar.bz2
slibc-f9e52c4acbd8f53da1b083770c6aab9c67cb0368.tar.xz
misc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--include/stdarg.h12
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
+