diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-11-20 14:14:37 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-11-20 14:14:37 +0100 |
commit | ad2349f32e4e8cbeea170fbbeb4d3dc453475872 (patch) | |
tree | 4fb3df4ebc0911da92cf1f8ba97071900a59a2d8 /src | |
parent | 60f60cc76e43197a0825ffac9aff0b7007a94175 (diff) |
Add missin include.
Diffstat (limited to 'src')
-rw-r--r-- | src/asc2bin.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/asc2bin.cc b/src/asc2bin.cc index 65efc31..da424a6 100644 --- a/src/asc2bin.cc +++ b/src/asc2bin.cc @@ -27,6 +27,8 @@ */ #include "asc2bin.h" +#include <string.h> + static int asc2nibble(unsigned char c) { if(c >= '0' && c <= '9') return c - '0'; |