blob: dd6628985346136e7cffc5409f9cdc8c5f70e876 [file] [log] [blame]
Patrick Rudolpha892cde2018-04-19 14:39:07 +02001/*
2 * Copyright 2013 Google Inc.
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but without any warranty; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18#ifndef __FIT_PAYLOAD_H_
19#define __FIT_PAYLOAD_H_
20
21#include <program_loading.h>
22#include <stdint.h>
23
24void fit_payload(struct prog *payload);
25
26#endif /* __FIT_PAYLOAD_H_ */