Fix implicit getopt

This commit is contained in:
yenatch 2017-06-24 16:47:11 -04:00
parent 80f7477c33
commit ed99a86864
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
#include <getopt.h>
void usage(void) {
printf("Usage: palette palfile\n");

View File

@ -4,6 +4,7 @@
#include <string.h>
#include <stdint.h>
#include <stdbool.h>
#include <getopt.h>
struct Frame {
uint8_t* data;