* src/commands.h: [SV 62213] Forward-declare struct file / child

This commit is contained in:
Paul Smith 2022-04-23 17:13:26 -04:00
parent cf56036c60
commit 93fd0c0c9a
2 changed files with 5 additions and 1 deletions

View File

@ -34,6 +34,9 @@ struct commands
#define COMMANDS_SILENT 2 /* Silent: @. */
#define COMMANDS_NOERROR 4 /* No errors: -. */
struct file;
struct child;
RETSIGTYPE fatal_error_signal (int sig);
void execute_file_commands (struct file *file);
void print_commands (const struct commands *cmds);

View File

@ -19,9 +19,10 @@ You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>. */
#include "makeint.h"
#include "filedef.h"
#include "commands.h"
#include "job.h"
#include "commands.h"
#include "debug.h"
#include <sys/time.h>