misc: Include time.h for time_t on FreeBSD

Fix the build after I changed the order of header files in the
SMS test.
diff --git a/include/osmocom/gsm/gsm0411_utils.h b/include/osmocom/gsm/gsm0411_utils.h
index d29ca63..ad368e6 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 <time.h>
+
 /* Turn int into semi-octet representation: 98 => 0x89 */
 uint8_t gsm411_bcdify(uint8_t value);