summaryrefslogtreecommitdiffstats
path: root/pb_decode.c
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-03-09 14:56:34 +0200
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-03-09 14:56:34 +0200
commit03e53930723dce5793678365f350e94c2bc358dc (patch)
tree2aac5d81701efb541c77fe1bfbc738a531f21aff /pb_decode.c
parentd580b225e859ef0462e1d96553003eff2793b796 (diff)
Add PB_SYSTEM_HEADER compile time option.
This allows replacing the C99 standard include file names with a single system-specific file. It should provide all the necessary system functions (typedefs, memset, memcpy, strlen). Update issue 62 Status: FixedInGit
Diffstat (limited to 'pb_decode.c')
-rw-r--r--pb_decode.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/pb_decode.c b/pb_decode.c
index 91b68ea3..6e81b40b 100644
--- a/pb_decode.c
+++ b/pb_decode.c
@@ -14,7 +14,6 @@
#define NANOPB_INTERNALS
#include "pb.h"
#include "pb_decode.h"
-#include <string.h>
typedef bool (*pb_decoder_t)(pb_istream_t *stream, const pb_field_t *field, void *dest) checkreturn;