diff options
author | Jonathan Beck | 2009-01-29 19:20:40 +0100 |
---|---|---|
committer | Jonathan Beck | 2009-01-29 19:20:40 +0100 |
commit | 8c2751f8c7e696fca895aebfafc7e668f3afe85c (patch) | |
tree | f01974f6f20b4d2fe53972d67eb4b7d7c588e035 /src/bplist.c | |
parent | 23b1e3200833dd79d754e7057ad1a4154f15172e (diff) | |
download | libplist-8c2751f8c7e696fca895aebfafc7e668f3afe85c.tar.gz libplist-8c2751f8c7e696fca895aebfafc7e668f3afe85c.tar.bz2 |
Add some static declarations.
Diffstat (limited to 'src/bplist.c')
-rw-r--r-- | src/bplist.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bplist.c b/src/bplist.c index 0140f88..78bbe4a 100644 --- a/src/bplist.c +++ b/src/bplist.c @@ -20,11 +20,13 @@ */ -#include "plist.h" #include <stdlib.h> #include <stdio.h> #include <string.h> +#include <plist/plist.h> +#include "plist.h" + /* Magic marker and size. */ #define BPLIST_MAGIC ((uint8_t*)"bplist") #define BPLIST_MAGIC_SIZE 6 |