PVS V1031: missing includes for memcpy/memset

Change-Id: I106027c0b8a367be1e58598f124e3a6d6541ee32
Reviewed-on: https://review.haiku-os.org/c/1622
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
This commit is contained in:
Adrien Destugues 2019-07-17 20:14:28 +02:00 committed by waddlesplash
parent 79d1ca0fa9
commit fbe53d9249
2 changed files with 2 additions and 5 deletions

View File

@ -31,6 +31,7 @@
#include <OS.h>
#include <MediaDefs.h>
#include <string.h>
#include <strings.h>
#include "hmulti_audio.h"
#include "multi.h"

View File

@ -28,11 +28,7 @@
#include "extern.h"
#include "decode.h"
#if !defined(__UD_STANDALONE__)
# if HAVE_STRING_H
# include <string.h>
# endif
#endif /* !__UD_STANDALONE__ */
#include <string.h>
static void ud_inp_init(struct ud *u);