demo: Add headers to overview.c (#684)

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.
This commit is contained in:
Rob Loach 2024-09-08 12:34:09 -04:00 committed by GitHub
parent ec113a0f7c
commit 18f7e7a948
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

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