diff options
author | Måns Rullgård | 2010-03-09 17:39:19 +0000 |
---|---|---|
committer | Måns Rullgård | 2010-03-09 17:39:19 +0000 |
commit | 2ed6f399440a9f9fa358a96293c6797c2ebd0aaf (patch) | |
tree | ea8d954cee507834abd9e4b233517a0b7864a633 /libavutil/sha.c | |
parent | 19fcd66c31b880487e477dd45501eb91b9c9fdfe (diff) |
Replace many includes of libavutil/common.h with what is actually needed
This reduces the number of false dependencies on header files and
speeds up compilation.
Originally committed as revision 22407 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/sha.c')
-rw-r--r-- | libavutil/sha.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavutil/sha.c b/libavutil/sha.c index 7fe34007bb..7d14efc6f2 100644 --- a/libavutil/sha.c +++ b/libavutil/sha.c @@ -21,8 +21,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "common.h" -#include "avutil.h" +#include <string.h> #include "bswap.h" #include "sha.h" #include "sha1.h" |