From 6145a2569fced13f18c4da200b9ba2070e643079 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Wed, 4 Sep 2013 12:12:58 +0200 Subject: [PATCH] misc: Include time.h for time_t on FreeBSD Fix the build after I changed the order of header files in the SMS test. --- include/osmocom/gsm/gsm0411_utils.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/osmocom/gsm/gsm0411_utils.h b/include/osmocom/gsm/gsm0411_utils.h index d29ca6317..ad368e67f 100644 --- a/include/osmocom/gsm/gsm0411_utils.h +++ b/include/osmocom/gsm/gsm0411_utils.h @@ -1,6 +1,8 @@ #ifndef _GSM0411_UTILS_H #define _GSM0411_UTILS_H +#include + /* Turn int into semi-octet representation: 98 => 0x89 */ uint8_t gsm411_bcdify(uint8_t value);