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.
This commit is contained in:
Rob Loach 2024-09-05 10:51:03 -04:00 committed by GitHub
parent ec113a0f7c
commit 429c074b32
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
overview(struct nk_context *ctx)