X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/ad3c9f2af814c84582fdd1649e49ec4f68572c5a..6dccf0e0b5e80b7b6176e8d332e646175431bb3d:/stdio/FreeBSD/printflocal.h?ds=sidebyside diff --git a/stdio/FreeBSD/printflocal.h b/stdio/FreeBSD/printflocal.h index f57e8e9..89b24a2 100644 --- a/stdio/FreeBSD/printflocal.h +++ b/stdio/FreeBSD/printflocal.h @@ -35,7 +35,13 @@ /* * Defining here VECTORS for all files that include this header () */ -#define VECTORS +#ifndef VECTORS +#define VECTORS +typedef __attribute__ ((vector_size(16))) unsigned char VECTORTYPE; +#ifdef __SSE2__ +#define V64TYPE +#endif /* __SSE2__ */ +#endif /* VECTORS */ /* * Flags used during conversion. @@ -68,13 +74,6 @@ /* Size of the static argument table. */ #define STATIC_ARG_TBL_SIZE 8 -#ifdef VECTORS -typedef __attribute__ ((vector_size(16))) unsigned char VECTORTYPE; -#ifdef __SSE2__ -#define V64TYPE -#endif /* __SSE2__ */ -#endif /* VECTORS */ - union arg { int intarg; u_int uintarg;