BUILD: calltrace: fix wrong include when building with TRACE=1

calltrace wasn't updated after the move of "now" from time.h to clock.h.
This must be backported to 2.5 where the breakage happened.
diff --git a/src/calltrace.c b/src/calltrace.c
index 551e8a0..f72e121 100644
--- a/src/calltrace.c
+++ b/src/calltrace.c
@@ -48,7 +48,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <haproxy/api.h>
-#include <haproxy/time.h>
+#include <haproxy/clock.h>
 #include <haproxy/tools.h>
 
 static FILE *log;