The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
123456789101112 #ifndef PL_UTIL_H_#define PL_UTIL_H_#define UNUSED_ARG(x) (void) x/* Get 'now' timestamp (microseconds since 1970) */double now_us(void);/* Get how many memory pages are currently in use */long total_memory_pages(void);#endif
#ifndef PL_UTIL_H_
#define PL_UTIL_H_
#define UNUSED_ARG(x) (void) x
/* Get 'now' timestamp (microseconds since 1970) */
double
now_us(
void
);
/* Get how many memory pages are currently in use */
long
total_memory_pages(
#endif