Loading...
--- Libc/Libc-1583.60.2/include/strings.h
+++ Libc/Libc-825.26/include/strings.h
@@ -62,7 +62,11 @@
#include <sys/cdefs.h>
#include <Availability.h>
-#include <sys/_types/_size_t.h>
+
+#ifndef _SIZE_T
+#define _SIZE_T
+typedef __darwin_size_t size_t;
+#endif
__BEGIN_DECLS
/* Removed in Issue 7 */
@@ -83,19 +87,12 @@
#if __DARWIN_C_LEVEL >= __DARWIN_C_FULL
__BEGIN_DECLS
int ffsl(long) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
-int ffsll(long long) __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
int fls(int) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
int flsl(long) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
-int flsll(long long) __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
__END_DECLS
#include <string.h>
#endif
-#if defined (__GNUC__) && _FORTIFY_SOURCE > 0 && !defined (__cplusplus)
-/* Security checking functions. */
-#include <secure/_strings.h>
-#endif
-
#endif /* _STRINGS_H_ */