mirror of https://github.com/pret/pokecrystal.git
Fix implicit getopt
This commit is contained in:
parent
80f7477c33
commit
ed99a86864
|
@ -3,6 +3,7 @@
|
|||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdbool.h>
|
||||
#include <getopt.h>
|
||||
|
||||
void usage(void) {
|
||||
printf("Usage: palette palfile\n");
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include <getopt.h>
|
||||
|
||||
struct Frame {
|
||||
uint8_t* data;
|
||||
|
|
Loading…
Reference in New Issue