mirror of https://github.com/mpv-player/mpv
memset and memcpy were used without #include <string.h> in a few places.
patch by Björn Sandell <biorn@dce.chalmers.se> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6132 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
b073f67d1c
commit
f0b5c4094b
|
@ -14,6 +14,7 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "config.h"
|
||||
#include "bswap.h"
|
||||
#include "mp_msg.h"
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <strings.h>
|
||||
|
||||
#include "config.h"
|
||||
#include "mp_msg.h"
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "config.h"
|
||||
#include "bswap.h"
|
||||
#include "mp_msg.h"
|
||||
|
|
Loading…
Reference in New Issue