diff options
-rw-r--r-- | ao-tools/ao-load/ao-load.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ao-tools/ao-load/ao-load.c b/ao-tools/ao-load/ao-load.c index b84a88a6..6966dd3a 100644 --- a/ao-tools/ao-load/ao-load.c +++ b/ao-tools/ao-load/ao-load.c @@ -19,6 +19,8 @@ #include <stdlib.h> #include <limits.h> #include <stdint.h> +#include <unistd.h> +#include <getopt.h> #include "ccdbg.h" #define AO_USB_DESC_STRING 3 @@ -94,6 +96,7 @@ rewrite(struct hex_image *image, unsigned addr, char *data, int len) memcpy(image->data + addr - image->address, data, len); } +static const struct option int main (int argc, char **argv) { |