Explorar o código

* Don't redefine bzero() as memset(). It's not portable.

Bryan Drewery %!s(int64=16) %!d(string=hai) anos
pai
achega
a80ab733d4
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/compat/memset.h

+ 2 - 2
src/compat/memset.h

@@ -17,7 +17,7 @@ void *memset(void *dest, int c, size_t n);
 
 /* Use memset instead of bzero.
  */
-#undef bzero
-#define bzero(dest, n)	memset(dest, 0, n)
+//#undef bzero
+//#define bzero(dest, n)	memset(dest, 0, n)
 
 #endif	/* !__EGG_COMPAT_MEMSET_H */