Move #include where it belongs.

This as a sideeffect fixes the linking failure of ffplay.

Originally committed as revision 20832 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Michael Niedermayer 15 years ago
parent 17986563eb
commit 64b12fc317
  1. 1
      libavutil/avstring.c
  2. 1
      libavutil/avstring.h

@ -24,6 +24,7 @@
#include <string.h>
#include <ctype.h>
#include "avstring.h"
#include "mem.h"
int av_strstart(const char *str, const char *pfx, const char **ptr)
{

@ -22,7 +22,6 @@
#define AVUTIL_AVSTRING_H
#include <stddef.h>
#include "mem.h"
/**
* Return non-zero if pfx is a prefix of str. If it is, *ptr is set to

Loading…
Cancel
Save