Commit bf7d32c9 bf7d32c9eeb9899a1ff7b74b5aa47ce755c10803 by Sergey Poznyakoff

Protect typedef int error_t by an additional

#ifndef. Thanks Alex S. Moore <asmoore@edge.net> for helping
find the problem.
1 parent 0d96ce99
......@@ -29,10 +29,12 @@
#define __need_error_t
#include <errno.h>
#ifndef error_t
#ifndef __error_t_defined
typedef int error_t;
# define __error_t_defined
#endif
#endif
/* My libc doesn't have these. -mccallum@jprc.com */
#ifndef HAVE_PROGRAM_INVOCATION_NAME
......