summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/amd64/include/stdarg.h2
-rw-r--r--sys/arm/include/stdarg.h2
-rw-r--r--sys/i386/include/stdarg.h2
-rw-r--r--sys/ia64/include/stdarg.h2
-rw-r--r--sys/powerpc/include/stdarg.h2
-rw-r--r--sys/sparc64/include/stdarg.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/sys/amd64/include/stdarg.h b/sys/amd64/include/stdarg.h
index a0c1662..c315dfc 100644
--- a/sys/amd64/include/stdarg.h
+++ b/sys/amd64/include/stdarg.h
@@ -42,7 +42,7 @@ typedef __va_list va_list;
#ifdef __GNUCLIKE_BUILTIN_STDARG
#define va_start(ap, last) \
- __builtin_stdarg_start((ap), (last))
+ __builtin_va_start((ap), (last))
#define va_arg(ap, type) \
__builtin_va_arg((ap), type)
diff --git a/sys/arm/include/stdarg.h b/sys/arm/include/stdarg.h
index a8b0ff0..8020d8d 100644
--- a/sys/arm/include/stdarg.h
+++ b/sys/arm/include/stdarg.h
@@ -45,7 +45,7 @@ typedef __va_list va_list;
#ifdef __GNUCLIKE_BUILTIN_STDARG
#define va_start(ap, last) \
- __builtin_stdarg_start((ap), (last))
+ __builtin_va_start((ap), (last))
#define va_arg(ap, type) \
__builtin_va_arg((ap), type)
diff --git a/sys/i386/include/stdarg.h b/sys/i386/include/stdarg.h
index a8ef25e..1945d1a 100644
--- a/sys/i386/include/stdarg.h
+++ b/sys/i386/include/stdarg.h
@@ -49,7 +49,7 @@ typedef __va_list va_list;
#ifdef __GNUCLIKE_BUILTIN_STDARG
#define va_start(ap, last) \
- __builtin_stdarg_start((ap), (last))
+ __builtin_va_start((ap), (last))
#define va_arg(ap, type) \
__builtin_va_arg((ap), type)
diff --git a/sys/ia64/include/stdarg.h b/sys/ia64/include/stdarg.h
index 9ab18b8..e6d0988 100644
--- a/sys/ia64/include/stdarg.h
+++ b/sys/ia64/include/stdarg.h
@@ -49,7 +49,7 @@ typedef __va_list va_list;
#if defined(__GNUCLIKE_BUILTIN_STDARG)
#define va_start(ap, last) \
- __builtin_stdarg_start((ap), (last))
+ __builtin_va_start((ap), (last))
#define va_arg(ap, type) \
__builtin_va_arg((ap), type)
diff --git a/sys/powerpc/include/stdarg.h b/sys/powerpc/include/stdarg.h
index d0af5bb..e81aab3 100644
--- a/sys/powerpc/include/stdarg.h
+++ b/sys/powerpc/include/stdarg.h
@@ -42,7 +42,7 @@ typedef __va_list va_list;
#if defined(__GNUCLIKE_BUILTIN_STDARG)
#define va_start(ap, last) \
- __builtin_stdarg_start((ap), (last))
+ __builtin_va_start((ap), (last))
#define va_arg(ap, type) \
__builtin_va_arg((ap), type)
diff --git a/sys/sparc64/include/stdarg.h b/sys/sparc64/include/stdarg.h
index a7ff284..9e6cd94 100644
--- a/sys/sparc64/include/stdarg.h
+++ b/sys/sparc64/include/stdarg.h
@@ -52,7 +52,7 @@ typedef __va_list va_list;
#ifdef __GNUCLIKE_BUILTIN_STDARG
#define va_start(ap, last) \
- __builtin_stdarg_start((ap), (last))
+ __builtin_va_start((ap), (last))
#define va_arg(ap, type) \
__builtin_va_arg((ap), type)
OpenPOWER on IntegriCloud