mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 01:51:24 +00:00
38 lines
1 KiB
Diff
38 lines
1 KiB
Diff
Index: coregrind/m_main.c
|
|
===================================================================
|
|
--- a/coregrind/m_main.c (revision 16102)
|
|
+++ b/coregrind/m_main.c (revision 16103)
|
|
@@ -3489,6 +3489,10 @@
|
|
// skip check
|
|
return VG_(memset)(s,c,n);
|
|
}
|
|
+void __bzero(void* s, UWord n);
|
|
+void __bzero(void* s, UWord n) {
|
|
+ (void)VG_(memset)(s,0,n);
|
|
+}
|
|
void bzero(void *s, SizeT n);
|
|
void bzero(void *s, SizeT n) {
|
|
VG_(memset)(s,0,n);
|
|
@@ -4058,20 +4062,7 @@
|
|
|
|
#endif
|
|
|
|
-#if defined(VGO_darwin) && DARWIN_VERS == DARWIN_10_10
|
|
|
|
-/* This might also be needed for > DARWIN_10_10, but I have no way
|
|
- to test for that. Hence '==' rather than '>=' in the version
|
|
- test above. */
|
|
-void __bzero ( void* s, UWord n );
|
|
-void __bzero ( void* s, UWord n )
|
|
-{
|
|
- (void) VG_(memset)( s, 0, n );
|
|
-}
|
|
-
|
|
-#endif
|
|
-
|
|
-
|
|
/*--------------------------------------------------------------------*/
|
|
/*--- end ---*/
|
|
/*--------------------------------------------------------------------*/
|
|
|