src-filters: Add missing includes, reduce warnings
[h316.git] / pc-tools / src-filters / zstrip.c
CommitLineData
437b3ba8 1#include <stdio.h>
2#include <fcntl.h>
3#include <sys/types.h>
4#include <sys/stat.h>
5#include <stdlib.h>
b30bf85c 6#include <unistd.h>
437b3ba8 7
8 #define MAX_SIZE 1000000
9
10int main(int argc, char ** argv){
11 int fd= open(argv[1], O_RDONLY );
12