Fix missing #includes

This commit is contained in:
2025-08-02 21:16:32 -04:00
parent 1807044977
commit 09b801c150
3 changed files with 3 additions and 0 deletions

View File

@@ -27,6 +27,7 @@
*
*/
#include <ctype.h>
#include <string.h>
#include "queue.h"
#include "stack.h"

View File

@@ -31,6 +31,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
#include "odt.h"
#include "options.h"

View File

@@ -1,4 +1,5 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <libxml/tree.h>
#include <libxslt/xslt.h>