diff options
author | Berke Viktor <bviktor@hexchat.org> | 2013-04-28 04:19:31 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2013-04-28 04:19:31 +0200 |
commit | 92dca50dfccb66f7770b172ded09a54579db06d0 (patch) | |
tree | c95bd716a25868d165104be1e8374b26099ecd00 /src/fe-gtk/sexy-spell-entry.c | |
parent | a3ba8d575e972ec1ee18b29007c58276625e77d3 (diff) |
Eliminate compiler warning
free() requires stdlib.h
Diffstat (limited to 'src/fe-gtk/sexy-spell-entry.c')
-rw-r--r-- | src/fe-gtk/sexy-spell-entry.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fe-gtk/sexy-spell-entry.c b/src/fe-gtk/sexy-spell-entry.c index aab82a7e..0b9aa0e4 100644 --- a/src/fe-gtk/sexy-spell-entry.c +++ b/src/fe-gtk/sexy-spell-entry.c @@ -26,6 +26,7 @@ #include "sexy-spell-entry.h" #include <string.h> #include <fcntl.h> +#include <stdlib.h> #include <glib/gi18n.h> #include <sys/types.h> #include <sys/stat.h> |