]> gitweb.michael.orlitzky.com - libsvgtiny.git/commit
examples/svgtiny_display_x11.c: add missing stdlib.h include
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 6 Aug 2023 00:36:04 +0000 (20:36 -0400)
committerMichael Drake <tlsa@netsurf-browser.org>
Wed, 9 Aug 2023 20:15:34 +0000 (21:15 +0100)
commit088329388d215b3476bc3178e3cdc0ffbb0e951a
tree4e243e8c860a60f6a53743c529b5d7684212d2a0
parent0630606336898622a4a2d7f6a9739cef0d7f6028
examples/svgtiny_display_x11.c: add missing stdlib.h include

This file uses malloc(), free(), and exit() -- all of which are
defined in stdlib.h. GCC seems unhappy about the situation, so we now
include it. This allows the file to be compiled once again.
examples/svgtiny_display_x11.c