non-standard header include
id3.c
includes getopt.h
which is a non-standard header.
POSIX provides getopt in unistd.h
, which is already included, so the getopt.h
inclusion can just be removed.
id3.c
includes getopt.h
which is a non-standard header.
POSIX provides getopt in unistd.h
, which is already included, so the getopt.h
inclusion can just be removed.