diff options
author | Alec Salazar <[email protected]> | 2014-08-05 09:10:54 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2014-08-13 10:35:00 -0700 |
commit | 22a11a5b5abc6b82972f8c6fa1d9b6efab3a4ab5 (patch) | |
tree | 867605d11905e8b68ff0fccd4a03789e5fd090c9 /lib | |
parent | 0d5c500d6cf4dd9e133cbffd82440c95d89478a4 (diff) |
Replace __va_list with va_list
Most of the code base already uses va_list, which is specified by
iso-c. gcc/glibc provides 'typedef __gnuc_va_list va_list'. and
when not using gcc/glibc we can't expect to find __gnuc_va_list.
Signed-off-by: Alec Salazar <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #2588
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libspl/include/sys/va_list.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/libspl/include/sys/va_list.h b/lib/libspl/include/sys/va_list.h index 04ad1480e..a36f5c77d 100644 --- a/lib/libspl/include/sys/va_list.h +++ b/lib/libspl/include/sys/va_list.h @@ -29,8 +29,4 @@ #include <stdarg.h> -#ifndef __va_list -typedef __gnuc_va_list __va_list; -#endif - #endif |