lib: fix compile after include change.

Origin commit data
------------------
Branch: ni/coolstream
Commit: b04b3f270a
Author: [CST] Bas <bas@coolstreamtech.com>
Date: 2012-03-04 (Sun, 04 Mar 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Bas
2012-03-04 15:53:33 +08:00
parent f49b8d8a05
commit 4aec6c4fec
7 changed files with 18 additions and 13 deletions

View File

@@ -5,5 +5,7 @@ noinst_LIBRARIES = libtuxbox-md5sum.a
AM_CPPFLAGS =
INCLUDES = \
-I$(top_srcdir)
libtuxbox_md5sum_a_SOURCES = libmd5sum.c md5.c

View File

@@ -1,16 +1,15 @@
#include "libmd5sum.h"
#include <sys/types.h>
#include <error.h>
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "md5.h"
#include "getline.h"
#include <sys/types.h>
#include <error.h>
#include <errno.h>
#include <string.h>
#include "libmd5sum.h"
#include "md5.h"
#include "getline.h"
#define STREQ(a, b) (strcmp ((a), (b)) == 0)
static int have_read_stdin;