Commit 0068435e 0068435e586545bf338361ca5b80f152dc26b1a4 by Sergey Poznyakoff

Include local copy of getopt.h if the system does not provide one.

1 parent 79cd36be
......@@ -23,7 +23,12 @@
#include <stdio.h>
#include <ctype.h>
#include <getopt.h>
#ifdef HAVE_GETOPT_H
# include <getopt.h>
#else
# include <mailutils/gnu/getopt.h>
#endif
#define __need_error_t
#include <errno.h>
......