diff options
| author | June McEnroe <june@causal.agency> | 2018-02-20 22:03:17 -0500 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2018-02-20 22:03:17 -0500 |
| commit | d8c264de6b799f856476546382570d27e1ac886b (patch) | |
| tree | f7d443c8c9d6c3e43744345bd6f6f0bd83c6cb30 | |
| parent | Take multiple inputs to pngo (diff) | |
| download | src-d8c264de6b799f856476546382570d27e1ac886b.tar.gz src-d8c264de6b799f856476546382570d27e1ac886b.zip | |
Add unistd.h include to pngo.c
Where getopt properly lives.
| -rw-r--r-- | bin/pngo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/pngo.c b/bin/pngo.c index ef4ded36..84c81444 100644 --- a/bin/pngo.c +++ b/bin/pngo.c @@ -23,6 +23,7 @@ #include <stdlib.h> #include <string.h> #include <sysexits.h> +#include <unistd.h> #include <zlib.h> #define PACKED __attribute__((packed)) |