We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bbd765 commit d911c12Copy full SHA for d911c12
src/time.c
@@ -28,6 +28,11 @@ extern "C"
28
#include "rcutils/error_handling.h"
29
#include "rcutils/snprintf.h"
30
31
+// Define PRId64 for platforms that don't have it
32
+#ifndef PRId64
33
+#define PRId64 "lld"
34
+#endif
35
+
36
rcutils_ret_t
37
rcutils_time_point_value_as_nanoseconds_string(
38
const rcutils_time_point_value_t * time_point,
0 commit comments