gtp: Speculative FreeBSD compile fix for htobe64
diff --git a/gtp/gtp.c b/gtp/gtp.c
index 6185634..94ad045 100644
--- a/gtp/gtp.c
+++ b/gtp/gtp.c
@@ -21,6 +21,10 @@
 #define _GNU_SOURCE 1
 #endif
 
+#if defined(__FreeBSD__)
+#include <sys/endian.h>
+#endif
+
 #include "../config.h"
 #ifdef HAVE_STDINT_H
 #include <stdint.h>