Compare commits

...

1 Commits

Author SHA1 Message Date
Rob Loach
429c074b32
demo: Add headers to overview.c
This adds the required C headers directly to the top of the overview.c demo so that they don't need to be added in the renders themselves.
2024-09-05 10:51:03 -04:00

View File

@ -1,4 +1,5 @@
#include <time.h>
#include <limits.h> /* INT_MAX */
#include <time.h> /* struct tm, localtime */
static int
overview(struct nk_context *ctx)