mpruett / audiofile

Audio File Library
https://audiofile.68k.org/
GNU Lesser General Public License v2.1
155 stars 41 forks source link

Replace bzero() with memset() #18

Closed danielverkamp closed 8 years ago

danielverkamp commented 11 years ago

This fixes the build with MinGW, which doesn't have bzero.

In addition, POSIX mentions that memset() is preferred over bzero() for portability reasons.

nikreiman commented 9 years ago

Windows' Visual Studio compiler also doesn't have bzero, this makes audiofile a bit trickier to build on that platform.

mpruett commented 8 years ago

Thanks, this change is applied in d9363a5d16af4ce55eb35c5aad9ca19bb9c53cbe.