added missing header include in parser

This commit is contained in:
Václav Šmejkal 2023-08-27 11:59:15 +02:00
parent 088ff17b1d
commit 2682ef294e
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

@ -16,14 +16,16 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <why2/chat/parser.h>
#include <stdio.h>
#include <string.h>
#include <yaml.h>
#include <why2/memory.h>
#include <why2/misc.h>
#include <yaml.h>
char *why2_yml_read(char *path, char *key)
{
FILE *file = fopen(path, "r");