diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2021-07-28 15:10:37 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2021-07-28 15:18:36 +0800 |
commit | 108c423d7071dd110fbe4204394011b035edaea4 (patch) | |
tree | 276895f8c1248801bfea51fa608df34caa839667 /gtk/compose | |
parent | dded10a396f5fec23c459942db9e17d8806fcc24 (diff) | |
download | gtk+-108c423d7071dd110fbe4204394011b035edaea4.tar.gz |
compose-parse.c: Include stdlib.h
That is needed for exit(), and it may not have been included by the
other headers.
Diffstat (limited to 'gtk/compose')
-rw-r--r-- | gtk/compose/compose-parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/compose/compose-parse.c b/gtk/compose/compose-parse.c index e80b270453..7a3d511132 100644 --- a/gtk/compose/compose-parse.c +++ b/gtk/compose/compose-parse.c @@ -1,6 +1,7 @@ #include <gtk/gtk.h> #include "gtk/gtkcomposetable.h" #include <locale.h> +#include <stdlib.h> /* This program reads a Compose file and generates files with sequences, * character data, and definitions for the builtin compose table of GTK. |