]> git.saurik.com Git - apple/libc.git/blobdiff - include/secure/_stdio.h
Libc-763.11.tar.gz
[apple/libc.git] / include / secure / _stdio.h
index 9d1b16348c46171fa951f7116b74918caeba5183..e04c9c5521e38dfe8ea15916a75d9b8556736df0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2007 Apple Inc. All rights reserved.
+ * Copyright (c) 2007, 2010 Apple Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  *
 
 #undef sprintf
 #undef vsprintf
+
+#if __DARWIN_C_LEVEL >= 200112L
 #undef snprintf
 #undef vsnprintf
+#endif
 
 /* sprintf, vsprintf, snprintf, vsnprintf */
 
@@ -50,6 +53,7 @@ extern int __snprintf_chk (char * __restrict, size_t, int, size_t,
                           const char * __restrict, ...)
   __DARWIN_LDBL_COMPAT (__snprintf_chk);
 
+#if __DARWIN_C_LEVEL >= 200112L
 #define snprintf(str, len, ...) \
   __builtin___snprintf_chk (str, len, 0, __darwin_obsz(str), __VA_ARGS__)
 
@@ -66,7 +70,7 @@ extern int __vsnprintf_chk (char * __restrict, size_t, int, size_t,
 
 #define vsnprintf(str, len, format, ap) \
   __builtin___vsnprintf_chk (str, len, 0, __darwin_obsz(str), format, ap)
-
+#endif
 
 #endif