summaryrefslogtreecommitdiffstats
path: root/libopkg
diff options
context:
space:
mode:
authorgraham.gower@gmail.com <graham.gower@gmail.com@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2010-12-22 20:38:40 (EST)
committer graham.gower@gmail.com <graham.gower@gmail.com@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2010-12-22 20:38:40 (EST)
commitf2fc8450d825b97076835c769f95764bece45140 (patch)
tree36f9745b6dfd9635b1eec486f8e2e06195128e37 /libopkg
parent35a2b8424a53f7f2e8ac3070169a8bb3878f8107 (diff)
Fix potential undefined references to FILE, for libopkg users.
Patch from Richard Purdie. git-svn-id: http://opkg.googlecode.com/svn/trunk@595 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg')
-rw-r--r--libopkg/pkg_dest.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libopkg/pkg_dest.h b/libopkg/pkg_dest.h
index cbc1ce6..4ad417e 100644
--- a/libopkg/pkg_dest.h
+++ b/libopkg/pkg_dest.h
@@ -18,6 +18,8 @@
#ifndef PKG_DEST_H
#define PKG_DEST_H
+#include <stdio.h>
+
typedef struct pkg_dest pkg_dest_t;
struct pkg_dest
{